Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | /* * Copyright (c) 2019 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include <logging/log.h> #define LOG_LEVEL LOG_LEVEL_DBG LOG_MODULE_REGISTER(net_dumb_http_srv_mt_sample); #include <zephyr.h> #include <errno.h> #include <net/net_ip.h> #include <net/socket.h> #include <net/tls_credentials.h> #define MY_PORT 8080 #if defined(CONFIG_NET_SOCKETS_SOCKOPT_TLS) #define STACK_SIZE 4096 #define SERVER_CERTIFICATE_TAG 1 static const unsigned char server_certificate[] = { #include "mt-http-server-cert.der.inc" }; /* This is the private key in pkcs#8 format. */ static const unsigned char private_key[] = { #include "mt-http-server-key.der.inc" }; #else #define STACK_SIZE 1024 #endif #define THREAD_PRIORITY K_PRIO_COOP(0) static const char content[] = { #include "response_big.html.bin.inc" }; #define MAX_CLIENT_QUEUE CONFIG_NET_SAMPLE_NUM_HANDLERS #if defined(CONFIG_NET_IPV4) K_THREAD_STACK_ARRAY_DEFINE(tcp4_handler_stack, CONFIG_NET_SAMPLE_NUM_HANDLERS, STACK_SIZE); static struct k_thread tcp4_handler_thread[CONFIG_NET_SAMPLE_NUM_HANDLERS]; static k_tid_t tcp4_handler_tid[CONFIG_NET_SAMPLE_NUM_HANDLERS]; #endif #if defined(CONFIG_NET_IPV6) K_THREAD_STACK_ARRAY_DEFINE(tcp6_handler_stack, CONFIG_NET_SAMPLE_NUM_HANDLERS, STACK_SIZE); static struct k_thread tcp6_handler_thread[CONFIG_NET_SAMPLE_NUM_HANDLERS]; static k_tid_t tcp6_handler_tid[CONFIG_NET_SAMPLE_NUM_HANDLERS]; #endif static int tcp4_listen_sock; static int tcp4_accepted[CONFIG_NET_SAMPLE_NUM_HANDLERS]; static int tcp6_listen_sock; static int tcp6_accepted[CONFIG_NET_SAMPLE_NUM_HANDLERS]; static void process_tcp4(void); static void process_tcp6(void); K_THREAD_DEFINE(tcp4_thread_id, STACK_SIZE, process_tcp4, NULL, NULL, NULL, THREAD_PRIORITY, 0, K_FOREVER); K_THREAD_DEFINE(tcp6_thread_id, STACK_SIZE, process_tcp6, NULL, NULL, NULL, THREAD_PRIORITY, 0, K_FOREVER); static ssize_t sendall(int sock, const void *buf, size_t len) { while (len) { ssize_t out_len = send(sock, buf, len, 0); if (out_len < 0) { return out_len; } buf = (const char *)buf + out_len; len -= out_len; } return 0; } static int setup(int *sock, struct sockaddr *bind_addr, socklen_t bind_addrlen) { int ret; #if defined(CONFIG_NET_SOCKETS_SOCKOPT_TLS) *sock = socket(bind_addr->sa_family, SOCK_STREAM, IPPROTO_TLS_1_2); #else *sock = socket(bind_addr->sa_family, SOCK_STREAM, IPPROTO_TCP); #endif if (*sock < 0) { LOG_ERR("Failed to create TCP socket: %d", errno); return -errno; } #if defined(CONFIG_NET_SOCKETS_SOCKOPT_TLS) sec_tag_t sec_tag_list[] = { SERVER_CERTIFICATE_TAG, }; ret = setsockopt(*sock, SOL_TLS, TLS_SEC_TAG_LIST, sec_tag_list, sizeof(sec_tag_list)); if (ret < 0) { LOG_ERR("Failed to set TCP secure option %d", errno); ret = -errno; } #endif ret = bind(*sock, bind_addr, bind_addrlen); if (ret < 0) { LOG_ERR("Failed to bind TCP socket %d", errno); return -errno; } ret = listen(*sock, MAX_CLIENT_QUEUE); if (ret < 0) { LOG_ERR("Failed to listen on TCP socket %d", errno); ret = -errno; } return ret; } static void client_conn_handler(void *ptr1, void *ptr2, void *ptr3) { ARG_UNUSED(ptr1); int *sock = ptr2; k_tid_t *in_use = ptr3; int client; int received; int ret; char buf[100]; client = *sock; /* Discard HTTP request (or otherwise client will get * connection reset error). */ do { received = recv(client, buf, sizeof(buf), 0); if (received == 0) { /* Connection closed */ LOG_DBG("[%d] Connection closed by peer", client); ret = 0; break; } else if (received < 0) { /* Socket error */ ret = -errno; LOG_ERR("[%d] Connection error %d", client, ret); break; } /* Note that something like this strstr() check should *NOT* * be used in production code. This is done like this just * for this sample application to keep things simple. * * We are assuming here that the full HTTP request is received * in one TCP segment which in real life might not. */ if (strstr(buf, "\r\n\r\n")) { break; } } while (true); (void)sendall(client, content, sizeof(content)); (void)close(client); *sock = -1; *in_use = NULL; } static int get_free_slot(int *accepted) { int i; for (i = 0; i < CONFIG_NET_SAMPLE_NUM_HANDLERS; i++) { if (accepted[i] < 0) { return i; } } return -1; } static int process_tcp(int *sock, int *accepted) { static int counter; int client; int slot; struct sockaddr_in6 client_addr; socklen_t client_addr_len = sizeof(client_addr); client = accept(*sock, (struct sockaddr *)&client_addr, &client_addr_len); if (client < 0) { LOG_ERR("Error in accept %d, stopping server", -errno); return -errno; } slot = get_free_slot(accepted); if (slot < 0 || slot >= CONFIG_NET_SAMPLE_NUM_HANDLERS) { LOG_ERR("Cannot accept more connections"); close(client); return 0; } accepted[slot] = client; #if defined(CONFIG_NET_IPV6) if (client_addr.sin6_family == AF_INET6) { tcp6_handler_tid[slot] = k_thread_create( &tcp6_handler_thread[slot], tcp6_handler_stack[slot], K_THREAD_STACK_SIZEOF(tcp6_handler_stack[slot]), (k_thread_entry_t)client_conn_handler, INT_TO_POINTER(slot), &accepted[slot], &tcp6_handler_tid[slot], THREAD_PRIORITY, 0, K_NO_WAIT); } #endif #if defined(CONFIG_NET_IPV4) if (client_addr.sin6_family == AF_INET) { tcp4_handler_tid[slot] = k_thread_create( &tcp4_handler_thread[slot], tcp4_handler_stack[slot], K_THREAD_STACK_SIZEOF(tcp4_handler_stack[slot]), (k_thread_entry_t)client_conn_handler, INT_TO_POINTER(slot), &accepted[slot], &tcp4_handler_tid[slot], THREAD_PRIORITY, 0, K_NO_WAIT); } #endif if (LOG_LEVEL >= LOG_LEVEL_DBG) { char addr_str[INET6_ADDRSTRLEN]; net_addr_ntop(client_addr.sin6_family, &client_addr.sin6_addr, addr_str, sizeof(addr_str)); LOG_DBG("[%d] Connection #%d from %s", client, ++counter, log_strdup(addr_str)); } return 0; } static void process_tcp4(void) { struct sockaddr_in addr4; int ret; (void)memset(&addr4, 0, sizeof(addr4)); addr4.sin_family = AF_INET; addr4.sin_port = htons(MY_PORT); ret = setup(&tcp4_listen_sock, (struct sockaddr *)&addr4, sizeof(addr4)); if (ret < 0) { return; } LOG_DBG("Waiting for IPv4 HTTP connections on port %d, sock %d", MY_PORT, tcp4_listen_sock); while (ret == 0) { ret = process_tcp(&tcp4_listen_sock, tcp4_accepted); if (ret < 0) { return; } } } static void process_tcp6(void) { struct sockaddr_in6 addr6; int ret; (void)memset(&addr6, 0, sizeof(addr6)); addr6.sin6_family = AF_INET6; addr6.sin6_port = htons(MY_PORT); ret = setup(&tcp6_listen_sock, (struct sockaddr *)&addr6, sizeof(addr6)); if (ret < 0) { return; } LOG_DBG("Waiting for IPv6 HTTP connections on port %d, sock %d", MY_PORT, tcp6_listen_sock); while (ret == 0) { ret = process_tcp(&tcp6_listen_sock, tcp6_accepted); if (ret != 0) { return; } } } void start_listener(void) { int i; for (i = 0; i < CONFIG_NET_SAMPLE_NUM_HANDLERS; i++) { #if defined(CONFIG_NET_IPV4) tcp4_accepted[i] = -1; tcp4_listen_sock = -1; #endif #if defined(CONFIG_NET_IPV6) tcp6_accepted[i] = -1; tcp6_listen_sock = -1; #endif } if (IS_ENABLED(CONFIG_NET_IPV6)) { k_thread_start(tcp6_thread_id); } if (IS_ENABLED(CONFIG_NET_IPV4)) { k_thread_start(tcp4_thread_id); } } void main(void) { #if defined(CONFIG_NET_SOCKETS_SOCKOPT_TLS) int err = tls_credential_add(SERVER_CERTIFICATE_TAG, TLS_CREDENTIAL_SERVER_CERTIFICATE, server_certificate, sizeof(server_certificate)); if (err < 0) { LOG_ERR("Failed to register public certificate: %d", err); } err = tls_credential_add(SERVER_CERTIFICATE_TAG, TLS_CREDENTIAL_PRIVATE_KEY, private_key, sizeof(private_key)); if (err < 0) { LOG_ERR("Failed to register private key: %d", err); } #endif start_listener(); } |