1
8
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
55
56
57
58
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
86
87
88
89
90
91
106
107
108
109
110
114
118
122
126
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
158
159
160
167
168
175
176
177
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
213
214
215
220
221
222
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
245
246
251
252
/* ... */
/* ... */
#include <stdio.h>
#include <string.h>
#include "lwip/opt.h"
#include "lwip/pbuf.h"
#include "lwip/snmp.h"
#include "lwip/ethip6.h"
#include "netif/etharp.h"
#include "esp_netif.h"
#include "esp_netif_net_stack.h"
#include "lwip/esp_netif_net_stack.h"
#include "esp_compiler.h"
#include "lwip/esp_pbuf_ref.h"
#include "esp_netif_types.h"13 includes
/* ... */
static void
low_level_init(struct netif *netif)
{
netif->hwaddr_len = ETH_HWADDR_LEN;
netif->mtu = 1500;
netif->flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP | NETIF_FLAG_ETHERNET;
#if ESP_LWIP
#if LWIP_IGMP
netif->flags |= NETIF_FLAG_IGMP;
#endif/* ... */
#endif
#if ESP_IPV6
#if LWIP_IPV6 && LWIP_IPV6_MLD
netif->flags |= NETIF_FLAG_MLD6;
#endif/* ... */
#endif
}{ ... }
/* ... */
static err_t low_level_output(struct netif *netif, struct pbuf *p)
{
esp_netif_t *esp_netif = netif->state;
if (esp_netif == NULL) {
return ERR_IF;
}{...}
struct pbuf *q = p;
esp_err_t netif_ret = ESP_FAIL;
err_t ret = ERR_IF;
if(q->next == NULL) {
netif_ret = esp_netif_transmit_wrap(esp_netif, q->payload, q->len, q);
}{...} else {
LWIP_DEBUGF(PBUF_DEBUG, ("low_level_output: pbuf is a list, application may has bug"));
q = pbuf_alloc(PBUF_RAW_TX, p->tot_len, PBUF_RAM);
if (q != NULL) {
pbuf_copy(q, p);
}{...} else {
return ERR_MEM;
}{...}
netif_ret = esp_netif_transmit_wrap(esp_netif, q->payload, q->len, q);
pbuf_free(q);
}{...}
switch (netif_ret) {
case ESP_OK:
ret = ERR_OK;
break;
...
case ESP_ERR_NO_MEM:
ret = ERR_MEM;
break;
...
case ESP_ERR_ESP_NETIF_TX_FAILED:
ret = ERR_BUF;
break;
...
case ESP_ERR_INVALID_ARG:
ret = ERR_ARG;
break;
...
default:
ret = ERR_IF;
break;...
}{...}
return ret;
}{ ... }
/* ... */
esp_netif_recv_ret_t wlanif_input(void *h, void *buffer, size_t len, void* l2_buff)
{
struct netif * netif = h;
esp_netif_t *esp_netif = netif->state;
struct pbuf *p;
if(unlikely(!buffer || !netif_is_up(netif))) {
if (l2_buff) {
esp_netif_free_rx_buffer(esp_netif, l2_buff);
}{...}
return ESP_NETIF_OPTIONAL_RETURN_CODE(ESP_FAIL);
}{...}
#ifdef CONFIG_LWIP_L2_TO_L3_COPY
p = pbuf_alloc(PBUF_RAW, len, PBUF_RAM);
if (p == NULL) {
esp_netif_free_rx_buffer(esp_netif, l2_buff);
return ESP_NETIF_OPTIONAL_RETURN_CODE(ESP_ERR_NO_MEM);
}{...}
memcpy(p->payload, buffer, len);
esp_netif_free_rx_buffer(esp_netif, l2_buff);/* ... */
#else
p = esp_pbuf_allocate(esp_netif, buffer, len, l2_buff);
if (p == NULL) {
esp_netif_free_rx_buffer(esp_netif, l2_buff);
return ESP_NETIF_OPTIONAL_RETURN_CODE(ESP_ERR_NO_MEM);
}{...}
/* ... */#endif
if (unlikely(netif->input(p, netif) != ERR_OK)) {
LWIP_DEBUGF(NETIF_DEBUG, ("wlanif_input: IP input error\n"));
pbuf_free(p);
return ESP_NETIF_OPTIONAL_RETURN_CODE(ESP_FAIL);
}{...}
return ESP_NETIF_OPTIONAL_RETURN_CODE(ESP_OK);
}{ ... }
/* ... */
err_t
wlanif_init(struct netif *netif)
{
LWIP_ASSERT("netif != NULL", (netif != NULL));
#if LWIP_NETIF_HOSTNAME
#if ESP_LWIP
if (esp_netif_get_hostname(netif->state, &netif->hostname) != ESP_OK) {
netif->hostname = CONFIG_LWIP_LOCAL_HOSTNAME;
}{...}
#else/* ... */
netif->hostname = "lwip";
#endif
/* ... */
#endif
/* ... */
NETIF_INIT_SNMP(netif, snmp_ifType_ethernet_csmacd, 100);
/* ... */
#if LWIP_IPV4
netif->output = etharp_output;
#endif
#if LWIP_IPV6
netif->output_ip6 = ethip6_output;
#endif
netif->linkoutput = low_level_output;
low_level_init(netif);
return ERR_OK;
}{ ... }
err_t wlanif_init_sta(struct netif *netif) {
netif->name[0] = 's';
netif->name[1] = 't';
return wlanif_init(netif);
}{ ... }
err_t wlanif_init_ap(struct netif *netif) {
netif->name[0] = 'a';
netif->name[1] = 'p';
return wlanif_init(netif);
}{ ... }
err_t wlanif_init_nan(struct netif *netif) {
netif->name[0] = 'n';
netif->name[1] = 'a';
return wlanif_init(netif);
}{ ... }