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 | /* echo.c - Networking echo server */ /* * Copyright (c) 2016 Intel Corporation. * * SPDX-License-Identifier: Apache-2.0 */ #if 1 #define SYS_LOG_DOMAIN "echo-server" #define NET_SYS_LOG_LEVEL SYS_LOG_LEVEL_DEBUG #define NET_LOG_ENABLED 1 #endif #include <zephyr.h> #include <linker/sections.h> #include <errno.h> #include <net/net_pkt.h> #include <net/net_core.h> #include <net/net_context.h> #include <net/net_app.h> #include "common.h" /* The startup time needs to be longish if DHCP is enabled as setting * DHCP up takes some time. */ #define APP_STARTUP_TIME K_SECONDS(20) #define APP_BANNER "Run echo server" static struct k_sem quit_lock; void panic(const char *msg) { if (msg) { NET_ERR("%s", msg); } for (;;) { k_sleep(K_FOREVER); } } void quit(void) { k_sem_give(&quit_lock); } struct net_pkt *build_reply_pkt(const char *name, struct net_app_ctx *ctx, struct net_pkt *pkt) { struct net_pkt *reply_pkt; struct net_buf *frag, *tmp; int header_len = 0, recv_len, reply_len; NET_INFO("%s received %d bytes", name, net_pkt_appdatalen(pkt)); if (net_pkt_appdatalen(pkt) == 0) { return NULL; } reply_pkt = net_app_get_net_pkt(ctx, net_pkt_family(pkt), K_FOREVER); NET_ASSERT(reply_pkt); NET_ASSERT(net_pkt_family(reply_pkt) == net_pkt_family(pkt)); recv_len = net_pkt_get_len(pkt); tmp = pkt->frags; /* If we have link layer headers, then get rid of them here. */ if (recv_len != net_pkt_appdatalen(pkt)) { /* First fragment will contain IP header so move the data * down in order to get rid of it. */ header_len = net_pkt_appdata(pkt) - tmp->data; NET_ASSERT(header_len < CONFIG_NET_BUF_DATA_SIZE); /* After this pull, the tmp->data points directly to application * data. */ net_buf_pull(tmp, header_len); } net_pkt_set_appdatalen(reply_pkt, net_pkt_appdatalen(pkt)); while (tmp) { frag = net_app_get_net_buf(ctx, reply_pkt, K_FOREVER); if (net_buf_headroom(tmp) == 0) { /* If there is no link layer headers in the * received fragment, then get rid of that also * in the sending fragment. We end up here * if MTU is larger than fragment size, this * is typical for ethernet. */ net_buf_push(frag, net_buf_headroom(frag)); frag->len = 0; /* to make fragment empty */ /* Make sure to set the reserve so that * in sending side we add the link layer * header if needed. */ net_pkt_set_ll_reserve(reply_pkt, 0); } NET_ASSERT_INFO(net_buf_tailroom(frag) >= tmp->len, "tail %zd longer than len %d", net_buf_tailroom(frag), tmp->len); memcpy(net_buf_add(frag, tmp->len), tmp->data, tmp->len); tmp = net_pkt_frag_del(pkt, NULL, tmp); } reply_len = net_pkt_get_len(reply_pkt); NET_ASSERT_INFO((recv_len - header_len) == reply_len, "Received %d bytes, sending %d bytes", recv_len - header_len, reply_len); return reply_pkt; } void pkt_sent(struct net_app_ctx *ctx, int status, void *user_data_send, void *user_data) { if (!status) { NET_INFO("Sent %d bytes", POINTER_TO_UINT(user_data_send)); } } static inline int init_app(void) { k_sem_init(&quit_lock, 0, UINT_MAX); return 0; } void main(void) { init_app(); if (IS_ENABLED(CONFIG_NET_TCP)) { start_tcp(); } if (IS_ENABLED(CONFIG_NET_UDP)) { start_udp(); } k_sem_take(&quit_lock, K_FOREVER); NET_INFO("Stopping..."); if (IS_ENABLED(CONFIG_NET_TCP)) { stop_tcp(); } if (IS_ENABLED(CONFIG_NET_UDP)) { stop_udp(); } } |