cueOS  2.4
cueOS - Universal Show Control OS for ARM
net.c
1/***============================================================================================================================
2 * Dependencies inclusion
3 * Necessary dependencies should be declared here. Header file should contain as little dependecies declarations as possible
4 *=============================================================================================================================*/
5
6#include "lwip/init.h"
7#include "lwip/netif.h"
8#include "lwip/dhcp.h"
9#include "cueos_config.h"
10#include "leds_driver.h"
11#include "ethernet_driver.h"
12#include "net.h"
13
14//TODO: clean, there has been many modifications, some content might be useless
15
16/***============================================================================================================================
17 * Private variables definitions
18 * These variables are only accessible from within the file's scope
19 *=============================================================================================================================*/
20
21static net_s this = NET_DEFAULT;
22osSemaphoreId_t ethernetif_LinkSemaphore = NULL;
23struct link_str ethernetif_link_arg;
24const osThreadAttr_t ethernetif_LinkThr_attr = ETHERNETIF_LINKTHR_ATTR;
25
26
27/***============================================================================================================================
28 * Private functions definitions
29 * These functions are only accessible from within the file's scope
30 *=============================================================================================================================*/
31
32#if cueOS_CONFIG_NET_USE_DHCP
38static void _net_set_ip(void *arg){
39
40 struct netif gnetif;
41
42 for(;;){
43
44 gnetif = this.mode == NET_MODE_ETHERNET ? this.ethernetif : this.wirelessif;
45
46 if(this.bound_state == NET_UNBOUND){
47 if(netif_is_link_up(&gnetif) && (dhcp_supplied_address(&gnetif))){
48 this.ip_addr = gnetif.ip_addr;
49 this.gateway = gnetif.gw;
50 this.netmask = gnetif.netmask;
51 this.net_ready_callback();
52 this.bound_state = NET_BOUND;
54 }else{
56 }
57 }
58
59 osDelay(500);
60
61 }
62
63}
64#endif
65
72static void _net_setup_ethernetif(void){
73
74 netif_add(&this.ethernetif, &this.ip_addr, &this.netmask, &this.gateway, NULL, &ethernetif_init, &tcpip_input);
75 netif_set_default(&this.ethernetif);
76 netif_is_link_up(&this.ethernetif) ? netif_set_up(&this.ethernetif) : netif_set_down(&this.ethernetif);
77
78 netif_set_link_callback(&this.ethernetif, ethernetif_update_config);
79
80 ethernetif_LinkSemaphore = osSemaphoreNew(1, 1, NULL);
81
82 const osThreadAttr_t attr = {
83 .priority = osPriorityNormal,
84 .stack_size = configMINIMAL_STACK_SIZE * 2
85 };
86
87 ethernetif_link_arg.netif = &this.ethernetif;
88 ethernetif_link_arg.semaphore = ethernetif_LinkSemaphore;
89
90 osThreadNew(ethernetif_set_link, &ethernetif_link_arg, &attr);
91
92#if cueOS_CONFIG_NET_USE_DHCP
93 osThreadNew(_net_set_ip, NULL, NULL);
94 netif_set_up(&this.ethernetif);
95 dhcp_start(&this.ethernetif);
96#endif
97
98 //ethernetif_notify_conn_changed(&this.ethernetif);
99 this.bound_state = NET_UNBOUND;
100 this.link_state = netif_is_link_up(&this.ethernetif) ? NET_LINK_UP : NET_LINK_DOWN;
101
102}
103
111static void _net_setup_wirelessif(void){
112
113}
114
120static void _net_setup_if(void *arg){
121 _net_setup_ethernetif();
122 _net_setup_wirelessif();
123 net_set_mode(this.mode);
124}
125
126
127/***============================================================================================================================
128 * Public functions definitions
129 * These functions can be accessed outside of the file's scope
130 *=============================================================================================================================*/
131
138void net_init(net_mode_e mode, void *net_ready_callback){
139#if cueOS_CONFIG_NET_USE_DHCP
140 IP4_ADDR(&this.ip_addr, 0, 0, 0, 0);
141 IP4_ADDR(&this.gateway, 0, 0, 0, 0);
142 IP4_ADDR(&this.netmask, 0, 0, 0, 0);
143#else
144 IP4_ADDR(&this.ip_addr, cueOS_CONFIG_NET_STATIC_IP_0,
145 cueOS_CONFIG_NET_STATIC_IP_1,
146 cueOS_CONFIG_NET_STATIC_IP_2,
147 cueOS_CONFIG_NET_STATIC_IP_3);
148
149 IP4_ADDR(&this.gateway, cueOS_CONFIG_NET_STATIC_GW_0,
150 cueOS_CONFIG_NET_STATIC_GW_1,
151 cueOS_CONFIG_NET_STATIC_GW_2,
152 cueOS_CONFIG_NET_STATIC_GW_3);
153
154 IP4_ADDR(&this.netmask, cueOS_CONFIG_NET_STATIC_NM_0,
155 cueOS_CONFIG_NET_STATIC_NM_1,
156 cueOS_CONFIG_NET_STATIC_NM_2,
157 cueOS_CONFIG_NET_STATIC_NM_3);
158#endif
159 this.net_ready_callback = net_ready_callback;
160 tcpip_init(_net_setup_if, NULL);
161}
162
168ip4_addr_t net_get_ip_addr(void){
169 return (this.mode == NET_MODE_ETHERNET ? this.ethernetif.ip_addr : this.wirelessif.ip_addr);
170}
171
177ip4_addr_t net_get_gateway(void){
178 return (this.mode == NET_MODE_ETHERNET ? this.ethernetif.gw : this.wirelessif.gw);
179}
180
188
189 this.mode = mode;
190
191 switch(this.mode){
193 netif_set_down(&this.wirelessif);
194 netif_set_default(&this.ethernetif);
195 netif_set_up(&this.ethernetif);
196 ethernetif_notify_conn_changed(&this.ethernetif);
197 break;
199 netif_set_down(&this.ethernetif);
200 netif_set_default(&this.wirelessif);
201 netif_set_up(&this.wirelessif);
202 //TODO: implement wireless connection change callback
203 break;
204 }
205
206}
207
214void ethernetif_notify_conn_changed(struct netif *netif){
215 this.bound_state = NET_UNBOUND;
216 this.link_state = netif_is_link_up(netif) ? NET_LINK_UP : NET_LINK_DOWN;
217#if cueOS_CONFIG_NET_USE_DHCP
218 dhcp_network_changed(netif);
219#else
220 //TODO: maybe use a single function to establish link state for both static and DHCP mode @see _net_set_ip
221 if(this.link_state == NET_LINK_UP){
222 this.bound_state = NET_BOUND;
224 this.net_ready_callback();
225 }else{
226 this.bound_state = NET_UNBOUND;
228 }
229#endif
230}
231
void ethernetif_notify_conn_changed(struct netif *netif)
Function called on ethernet interface link change.
Definition: net.c:214
err_t ethernetif_init(struct netif *netif)
void ethernetif_set_link(void *argument)
This function sets the netif link status.
void leds_driver_set(led_driver_led_e led, led_driver_led_state_e state)
Assigns a state to a driver's led.
Definition: leds_driver.c:110
@ LED_NETWORK
Definition: leds_driver.h:61
@ LED_BLINK
Definition: leds_driver.h:42
@ LED_OFF
Definition: leds_driver.h:40
net_mode_e
used to set net's prefferred/current network interface
Definition: net.h:43
void net_init(net_mode_e mode, void *net_ready_callback)
Initialises network.
Definition: net.c:138
ip4_addr_t net_get_ip_addr(void)
Returns the active network interface IP address.
Definition: net.c:168
void net_set_mode(net_mode_e mode)
Sets the network mode to either ethernet or wireless.
Definition: net.c:187
ip4_addr_t net_get_gateway(void)
Returns the active network interface gateway address.
Definition: net.c:177
@ NET_UNBOUND
Definition: net.h:29
@ NET_BOUND
Definition: net.h:28
@ NET_MODE_ETHERNET
Definition: net.h:44
@ NET_MODE_WIRELESS
Definition: net.h:45
@ NET_LINK_UP
Definition: net.h:36
@ NET_LINK_DOWN
Definition: net.h:37
Defines the system's network interfaces.
Definition: net.h:56