summaryrefslogtreecommitdiff
path: root/os/include/net/lwip/netif.h
blob: cbfb597b73e8a31c57e00abce2b77120d3a31573 (plain)
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
/****************************************************************************
 *
 * Copyright 2016 Samsung Electronics All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied. See the License for the specific
 * language governing permissions and limitations under the License.
 *
 ****************************************************************************/
/*
 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
 * OF SUCH DAMAGE.
 *
 * This file is part of the lwIP TCP/IP stack.
 *
 * Author: Adam Dunkels <adam@sics.se>
 *
 */

/**
 * @addtogroup DHCP
 * @ingroup NETWORK
 * @{
 */

/**
 * @file net/lwip/netif.h
 * @brief netif API (to be used from lwIP TCPIP thread)
 */

#ifndef __LWIP_NETIF_H__
#define __LWIP_NETIF_H__
#include <tinyara/config.h>
#include <net/ethernet.h>
#include <net/lwip/opt.h>
#ifdef CONFIG_NET_ETH_MTU
#define MAX_NET_DEV_MTU CONFIG_NET_ETH_MTU
#else
#define MAX_NET_DEV_MTU 1500
#endif

#define ENABLE_LOOPBACK (LWIP_NETIF_LOOPBACK || LWIP_HAVE_LOOPIF)

#include <net/lwip/err.h>

#include <net/lwip/ipv4/ip_addr.h>

#include <net/lwip/def.h>
#include <net/lwip/pbuf.h>
#if LWIP_DHCP
struct dhcp;
#endif
#if LWIP_AUTOIP
struct autoip;
#endif

/* Temporary Static IP Settings, will be removed once config parameter is finalized and used */

/* Static IP ADDRESS */
#define IP_ADDR0   192
#define IP_ADDR1   168
#define IP_ADDR2   2
#define IP_ADDR3   10

/* NETMASK */
#define NETMASK_ADDR0   255
#define NETMASK_ADDR1   255
#define NETMASK_ADDR2   255
#define NETMASK_ADDR3   0

/* Gateway Address */
#define GW_ADDR0   192
#define GW_ADDR1   168
#define GW_ADDR2   2
#define GW_ADDR3   1

#ifdef __cplusplus
#define EXTERN extern "C"
extern "C" {
#else
#define EXTERN extern
#endif

/* Throughout this file, IP addresses are expected to be in
 * the same byte order as in IP_PCB. */

/** must be the maximum of all used hardware address lengths
    across all types of interfaces in use */
#define NETIF_MAX_HWADDR_LEN 6U

/** Whether the network interface is 'up'. This is
 * a software flag used to control whether this network
 * interface is enabled and processes traffic.
 * It is set by the startup code (for static IP configuration) or
 * by dhcp/autoip when an address has been assigned.
 */
#define NETIF_FLAG_UP           0x01U
/** If set, the netif has broadcast capability.
 * Set by the netif driver in its init function. */
#define NETIF_FLAG_BROADCAST    0x02U
/** If set, the netif is one end of a point-to-point connection.
 * Set by the netif driver in its init function. */
#define NETIF_FLAG_POINTTOPOINT 0x04U
/** If set, the interface is configured using DHCP.
 * Set by the DHCP code when starting or stopping DHCP. */
#define NETIF_FLAG_DHCP         0x08U
/** If set, the interface has an active link
 *  (set by the network interface driver).
 * Either set by the netif driver in its init function (if the link
 * is up at that time) or at a later point once the link comes up
 * (if link detection is supported by the hardware). */
#define NETIF_FLAG_LINK_UP      0x10U
/** If set, the netif is an ethernet device using ARP.
 * Set by the netif driver in its init function.
 * Used to check input packet types and use of DHCP. */
#define NETIF_FLAG_ETHARP       0x20U
/** If set, the netif is an ethernet device. It might not use
 * ARP or TCP/IP if it is used for PPPoE only.
 */
#define NETIF_FLAG_ETHERNET     0x40U
/** If set, the netif has IGMP capability.
 * Set by the netif driver in its init function. */
#define NETIF_FLAG_IGMP         0x80U

/** Function prototype for netif init functions. Set up flags and output/linkoutput
 * callback functions in this function.
 *
 * @param netif The netif to initialize
 */
typedef err_t (*netif_init_fn)(struct netif *netif);
/** Function prototype for netif->input functions. This function is saved as 'input'
 * callback function in the netif struct. Call it when a packet has been received.
 *
 * @param p The received packet, copied into a pbuf
 * @param inp The netif which received the packet
 */
typedef err_t (*netif_input_fn)(struct pbuf *p, struct netif *inp);
/** Function prototype for netif->output functions. Called by lwIP when a packet
 * shall be sent. For ethernet netif, set this to 'etharp_output' and set
 * 'linkoutput'.
 *
 * @param netif The netif which shall send a packet
 * @param p The packet to send (p->payload points to IP header)
 * @param ipaddr The IP address to which the packet shall be sent
 */
typedef err_t (*netif_output_fn)(struct netif *netif, struct pbuf *p, ip_addr_t *ipaddr);
/** Function prototype for netif->linkoutput functions. Only used for ethernet
 * netifs. This function is called by ARP when a packet shall be sent.
 *
 * @param netif The netif which shall send a packet
 * @param p The packet to send (raw ethernet packet)
 */
typedef err_t (*netif_linkoutput_fn)(struct netif *netif, struct pbuf *p);
/** Function prototype for netif status- or link-callback functions. */
typedef void (*netif_status_callback_fn)(struct netif *netif);
/** Function prototype for netif igmp_mac_filter functions */
typedef err_t (*netif_igmp_mac_filter_fn)(struct netif *netif, ip_addr_t *group, u8_t action);

#if defined(CONFIG_NET_ETHERNET)
#define MAC_ADDRLEN 6
#define MAC_HDRLEN 14
#elif defined(CONFIG_WIRELESS)
#define MAC_ADDRLEN 6
#define MAC_HDRLEN 14
#else
#define MAC_ADDRLEN 0
#define MAC_HDRLEN 0
#endif

/** Generic data structure used for all lwIP network interfaces.
 *  The following fields should be filled in by the initialization
 *  function for the device driver: hwaddr_len, hwaddr[], mtu, flags */
struct netif {
	/** pointer to next in linked list */
	struct netif *next;

	/** IP address configuration in network byte order */
	ip_addr_t ip_addr;
	ip_addr_t netmask;
	ip_addr_t gw;

	/** This function is called by the network device driver
	 *  to pass a packet up the TCP/IP stack. */
	netif_input_fn input;
	/** This function is called by the IP module when it wants
	 *  to send a packet on the interface. This function typically
	 *  first resolves the hardware address, then sends the packet. */
	netif_output_fn output;
	/** This function is called by the ARP module when it wants
	 *  to send a packet on the interface. This function outputs
	 *  the pbuf as-is on the link medium. */
	netif_linkoutput_fn linkoutput;
#if LWIP_NETIF_STATUS_CALLBACK
	/** This function is called when the netif state is set to up or down
	 */
	netif_status_callback_fn status_callback;
#endif							/* LWIP_NETIF_STATUS_CALLBACK */
#if LWIP_NETIF_LINK_CALLBACK
	/** This function is called when the netif link is set to up or down
	 */
	netif_status_callback_fn link_callback;
#endif							/* LWIP_NETIF_LINK_CALLBACK */
#if LWIP_NETIF_REMOVE_CALLBACK
	/** This function is called when the netif has been removed */
	netif_status_callback_fn remove_callback;
#endif							/* LWIP_NETIF_REMOVE_CALLBACK */
	/** This field can be set by the device driver and could point
	 *  to state information for the device. */
	void *state;
#if LWIP_DHCP
	/** the DHCP client state information for this netif */
	struct dhcp *dhcp;
#if LWIP_DHCPS
	/** the DHCP server information for this netif */
	struct udp_pcb *dhcps_pcb;
#endif							/* LWIP_DHCPS */
#endif							/* LWIP_DHCP */
#if LWIP_AUTOIP
	/** the AutoIP client state information for this netif */
	struct autoip *autoip;
#endif
#if LWIP_NETIF_HOSTNAME
	/* the hostname for this netif, NULL is a valid value */
	char *hostname;
#endif							/* LWIP_NETIF_HOSTNAME */
	/** maximum transfer unit (in bytes) */
	u16_t mtu;
	/** number of bytes used in hwaddr */
	u8_t hwaddr_len;
	/** link level hardware address of this interface */
	u8_t hwaddr[NETIF_MAX_HWADDR_LEN];
	/** flags (see NETIF_FLAG_ above) */
	u8_t flags;
	/** descriptive abbreviation */
	char name[2];
	/** number of this interface */
	u8_t num;
#if LWIP_SNMP
	/** link type (from "snmp_ifType" enum from snmp.h) */
	u8_t link_type;
	/** (estimate) link speed */
	u32_t link_speed;
	/** timestamp at last change made (up/down) */
	u32_t ts;
	/** counters */
	u32_t ifinoctets;
	u32_t ifinucastpkts;
	u32_t ifinnucastpkts;
	u32_t ifindiscards;
	u32_t ifoutoctets;
	u32_t ifoutucastpkts;
	u32_t ifoutnucastpkts;
	u32_t ifoutdiscards;
#endif							/* LWIP_SNMP */
#if LWIP_IGMP
	/** This function could be called to add or delete a entry in the multicast
	    filter table of the ethernet MAC.*/
	netif_igmp_mac_filter_fn igmp_mac_filter;
#endif							/* LWIP_IGMP */
#if LWIP_NETIF_HWADDRHINT
	u8_t *addr_hint;
#endif							/* LWIP_NETIF_HWADDRHINT */
#if ENABLE_LOOPBACK
	/* List of packets to be queued for ourselves. */
	struct pbuf *loop_first;
	struct pbuf *loop_last;
#if LWIP_LOOPBACK_MAX_PBUFS
	u16_t loop_cnt_current;
#endif							/* LWIP_LOOPBACK_MAX_PBUFS */
#endif							/* ENABLE_LOOPBACK */

	char d_ifname[6];
#if CONFIG_NSOCKET_DESCRIPTORS > 0
	struct netif *flink;
#endif
	struct ether_addr d_mac;	/* Device MAC address */

	u16_t d_len;
	u32_t d_flags;
	uint32_t d_ipaddr;			/* Host IPv4 address assigned to the network interface */
	uint32_t d_draddr;			/* Default router IP address */
	uint32_t d_netmask;			/* Network subnet mask */
	/* Driver callbacks */
	int (*d_ifup)(FAR struct netif *dev);
	int (*d_ifdown)(FAR struct netif *dev);
	int (*d_ifstate)(FAR struct netif *dev);
	int (*d_txavail)(FAR struct netif *dev);
	int (*d_txpoll)(FAR struct netif *dev);
	/* Drivers may attached device-specific, private information */
	void *d_private;
#ifdef CONFIG_NET_MULTIBUFFER
	u8_t *d_buf;
#else
	u8_t d_buf[MAX_NET_DEV_MTU + CONFIG_NET_GUARDSIZE];
#endif
};

#if LWIP_SNMP
#define NETIF_INIT_SNMP(netif, type, speed) \
	/* use "snmp_ifType" enum from snmp.h for "type", snmp_ifType_ethernet_csmacd by example */ \
	(netif)->link_type = (type);    \
	/* your link speed here (units: bits per second) */  \
	(netif)->link_speed = (speed);  \
	(netif)->ts = 0;              \
	(netif)->ifinoctets = 0;      \
	(netif)->ifinucastpkts = 0;   \
	(netif)->ifinnucastpkts = 0;  \
	(netif)->ifindiscards = 0;    \
	(netif)->ifoutoctets = 0;     \
	(netif)->ifoutucastpkts = 0;  \
	(netif)->ifoutnucastpkts = 0; \
	(netif)->ifoutdiscards = 0
#else							/* LWIP_SNMP */
#define NETIF_INIT_SNMP(netif, type, speed)
#endif							/* LWIP_SNMP */

/** To be removed Later once netif_list is used in netlib API's**/
/** List of registered Ethernet device drivers **/
#if CONFIG_NSOCKET_DESCRIPTORS > 0
#ifdef CONFIG_NET_LWIP
EXTERN struct netif *g_netdevices;
#endif
#endif

/** The list of network interfaces. */
extern struct netif *netif_list;
/** The default network interface. */
extern struct netif *netif_default;

/**
 * @cond
 */
void netif_init(void);

struct netif *netif_add(struct netif *netif, ip_addr_t *ipaddr, ip_addr_t *netmask, ip_addr_t *gw, void *state, netif_init_fn init, netif_input_fn input);
void netif_register_with_initial_ip(struct netif *netif, netif_init_fn netif_init);

/**
 * @endcond
 */

/**
 * @brief Change IP address configuration for a network interface (including netmask and default gateway).
 *
 * @param[in] netif the network interface to change
 * @param[in] ipaddr the new IP address
 * @param[in] netmask the new netmask
 * @param[in] gw the new default gateway
 *
 * @note netif parameter must not be null
 * @return none
 * @since Tizen RT v1.0
*/
void netif_set_addr(struct netif *netif, ip_addr_t *ipaddr, ip_addr_t *netmask, ip_addr_t *gw);

/// @cond
void netif_remove(struct netif *netif);
/// @endcond

/** Returns a network interface given its name. The name is of the form
   "et0", where the first two letters are the "name" field in the
   netif structure, and the digit is in the num field in the same
   structure. */

/**
 * @brief Find a network interface by searching for its name
 *
 * @param name the name of the netif (like netif->name) plus concatenated number
 * in ascii representation (e.g. 'en0')
 * @return netif the network interface
 * @since Tizen RT v1.0
*/
struct netif *netif_find(const char *name);

/// @cond

/**
 * @brief Set a network interface as the default network interface
 *        (used to output all packets for which no specific route is found)
 *
 * @param[in] netif the default network interface
 *
 * @return none
*/
void netif_set_default(struct netif *netif);

/**
 * @brief Changes the IP address of a network interface
 * @param[in] netif the network interface to change
 * @param[in] ipaddr the new IP address
 *
 * @note call netif_set_addr() if you also want to change netmask and default gateway
 * @return none
*/
void netif_set_ipaddr(struct netif *netif, ip_addr_t *ipaddr);

/**
 * @brief Change the netmask of a network interface
 * @param[in] netif the network interface to change
 * @param[in] netmask the new netmask
 *
 * @note call netif_set_addr() if you also want to change ip address and default gateway
 * @return none
*/
void netif_set_netmask(struct netif *netif, ip_addr_t *netmask);

/**
 * @brief Change the default gateway for a network interface
 * @param[in] netif the network interface to change
 * @param[in] gw    the new default gateway
 *
 * @note call netif_set_addr() if you also want to change ip address and netmask
 * @return none
*/
void netif_set_gw(struct netif *netif, ip_addr_t *gw);

/// @endcond

/**
 * @brief Bring an interface up, available for processing traffic.
 *
 * @param[in] netif the network interface to change
 * @return none
 * @since Tizen RT v1.0
*/
void netif_set_up(struct netif *netif);

/**
 * @brief Bring an interface down, disabling any traffic processing.
 *
 * @param[in] netif the network interface to change
 * @return none
 * @since Tizen RT v1.0
*/
void netif_set_down(struct netif *netif);

/// @cond

/** Ask if an interface is up */
#define netif_is_up(netif) (((netif)->flags & NETIF_FLAG_UP) ? (u8_t)1 : (u8_t)0)

#if LWIP_NETIF_STATUS_CALLBACK
void netif_set_status_callback(struct netif *netif, netif_status_callback_fn status_callback);
#endif							/* LWIP_NETIF_STATUS_CALLBACK */
#if LWIP_NETIF_REMOVE_CALLBACK
void netif_set_remove_callback(struct netif *netif, netif_status_callback_fn remove_callback);
#endif							/* LWIP_NETIF_REMOVE_CALLBACK */

void netif_set_link_up(struct netif *netif);
void netif_set_link_down(struct netif *netif);
/** Ask if a link is up */
#define netif_is_link_up(netif) (((netif)->flags & NETIF_FLAG_LINK_UP) ? (u8_t)1 : (u8_t)0)

#if LWIP_NETIF_LINK_CALLBACK
void netif_set_link_callback(struct netif *netif, netif_status_callback_fn link_callback);
#endif							/* LWIP_NETIF_LINK_CALLBACK */

#if LWIP_NETIF_HOSTNAME
#define netif_set_hostname(netif, name) \
	do { \
		if ((netif) != NULL) { \
			(netif)->hostname = name; \
		} \
	} while (0)
#define netif_get_hostname(netif) (((netif) != NULL) ? ((netif)->hostname) : NULL)
#endif							/* LWIP_NETIF_HOSTNAME */

#if LWIP_IGMP
#define netif_set_igmp_mac_filter(netif, function) \
	do { \
		if ((netif) != NULL) { \
			(netif)->igmp_mac_filter = function; \
		} \
	} while (0)
#define netif_get_igmp_mac_filter(netif) (((netif) != NULL) ? ((netif)->igmp_mac_filter) : NULL)
#endif							/* LWIP_IGMP */

#if ENABLE_LOOPBACK
err_t netif_loop_output(struct netif *netif, struct pbuf *p, ip_addr_t *dest_ip);
void netif_poll(struct netif *netif);
#if !LWIP_NETIF_LOOPBACK_MULTITHREADING
void netif_poll_all(void);
#endif							/* !LWIP_NETIF_LOOPBACK_MULTITHREADING */
#endif							/* ENABLE_LOOPBACK */

#if LWIP_NETIF_HWADDRHINT
#define NETIF_SET_HWADDRHINT(netif, hint) ((netif)->addr_hint = (hint))
#else							/* LWIP_NETIF_HWADDRHINT */
#define NETIF_SET_HWADDRHINT(netif, hint)
#endif							/* LWIP_NETIF_HWADDRHINT */

#undef EXTERN
#ifdef __cplusplus
}
#endif

#endif							/* __LWIP_NETIF_H__ */
/// @endcond

/** @} */