]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/net/lwip_tcpip/v2_0/include/lwip/ip.h
c8b9c22248ef74bd48f06ceba661e9b776cbe15b
[karo-tx-redboot.git] / packages / net / lwip_tcpip / v2_0 / include / lwip / ip.h
1 /*
2  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
3  * All rights reserved. 
4  * 
5  * Redistribution and use in source and binary forms, with or without modification, 
6  * are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  *    this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright notice,
11  *    this list of conditions and the following disclaimer in the documentation
12  *    and/or other materials provided with the distribution.
13  * 3. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission. 
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
18  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
19  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
20  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
21  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
25  * OF SUCH DAMAGE.
26  *
27  * This file is part of the lwIP TCP/IP stack.
28  * 
29  * Author: Adam Dunkels <adam@sics.se>
30  *
31  */
32 #ifndef __LWIP_IP_H__
33 #define __LWIP_IP_H__
34
35 #include "lwip/arch.h"
36
37 #include "lwip/def.h"
38 #include "lwip/pbuf.h"
39 #include "lwip/ip_addr.h"
40
41 #include "lwip/err.h"
42
43 struct netif;
44
45 void ip_init(void);
46 struct netif *ip_route(struct ip_addr *dest);
47 err_t ip_input(struct pbuf *p, struct netif *inp);
48 err_t ip_output(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest,
49                 u8_t ttl, u8_t tos, u8_t proto);
50 err_t ip_output_if(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest,
51                    u8_t ttl, u8_t tos, u8_t proto,
52        struct netif *netif);
53
54 #define IP_HLEN 20
55
56 #define IP_PROTO_ICMP 1
57 #define IP_PROTO_UDP 17
58 #define IP_PROTO_UDPLITE 170
59 #define IP_PROTO_TCP 6
60
61 /* This is passed as the destination address to ip_output_if (not
62    to ip_output), meaning that an IP header already is constructed
63    in the pbuf. This is used when TCP retransmits. */
64 #ifdef IP_HDRINCL
65 #undef IP_HDRINCL
66 #endif /* IP_HDRINCL */
67 #define IP_HDRINCL  NULL
68
69
70 /* This is the common part of all PCB types. It needs to be at the
71    beginning of a PCB type definition. It is located here so that
72    changes to this common part are made in one location instead of
73    having to change all PCB structs. */
74 #define IP_PCB struct ip_addr local_ip; \
75   struct ip_addr remote_ip; \
76    /* Socket options */  \
77   u16_t so_options;      \
78    /* Type Of Service */ \
79   u8_t tos;              \
80   /* Time To Live */     \
81   u8_t ttl
82
83 /*
84  * Option flags per-socket. These are the same like SO_XXX.
85  */
86 #define SOF_DEBUG           (u16_t)0x0001U              /* turn on debugging info recording */
87 #define SOF_ACCEPTCONN  (u16_t)0x0002U          /* socket has had listen() */
88 #define SOF_REUSEADDR   (u16_t)0x0004U          /* allow local address reuse */
89 #define SOF_KEEPALIVE   (u16_t)0x0008U          /* keep connections alive */
90 #define SOF_DONTROUTE   (u16_t)0x0010U          /* just use interface addresses */
91 #define SOF_BROADCAST   (u16_t)0x0020U          /* permit sending of broadcast msgs */
92 #define SOF_USELOOPBACK (u16_t)0x0040U          /* bypass hardware when possible */
93 #define SOF_LINGER          (u16_t)0x0080U              /* linger on close if data present */
94 #define SOF_OOBINLINE   (u16_t)0x0100U          /* leave received OOB data in line */
95 #define SOF_REUSEPORT   (u16_t)0x0200U          /* allow local address & port reuse */
96
97
98
99 #ifdef PACK_STRUCT_USE_INCLUDES
100 #  include "arch/bpstruct.h"
101 #endif
102 PACK_STRUCT_BEGIN
103 struct ip_hdr {
104   /* version / header length / type of service */
105   PACK_STRUCT_FIELD(u16_t _v_hl_tos);
106   /* total length */
107   PACK_STRUCT_FIELD(u16_t _len);
108   /* identification */
109   PACK_STRUCT_FIELD(u16_t _id);
110   /* fragment offset field */
111   PACK_STRUCT_FIELD(u16_t _offset);
112 #define IP_RF 0x8000        /* reserved fragment flag */
113 #define IP_DF 0x4000        /* dont fragment flag */
114 #define IP_MF 0x2000        /* more fragments flag */
115 #define IP_OFFMASK 0x1fff   /* mask for fragmenting bits */
116   /* time to live / protocol*/
117   PACK_STRUCT_FIELD(u16_t _ttl_proto);
118   /* checksum */
119   PACK_STRUCT_FIELD(u16_t _chksum);
120   /* source and destination IP addresses */
121   PACK_STRUCT_FIELD(struct ip_addr src);
122   PACK_STRUCT_FIELD(struct ip_addr dest); 
123 } PACK_STRUCT_STRUCT;
124 PACK_STRUCT_END
125 #ifdef PACK_STRUCT_USE_INCLUDES
126 #  include "arch/epstruct.h"
127 #endif
128
129 #define IPH_V(hdr)  (ntohs((hdr)->_v_hl_tos) >> 12)
130 #define IPH_HL(hdr) ((ntohs((hdr)->_v_hl_tos) >> 8) & 0x0f)
131 #define IPH_TOS(hdr) (htons((ntohs((hdr)->_v_hl_tos) & 0xff)))
132 #define IPH_LEN(hdr) ((hdr)->_len)
133 #define IPH_ID(hdr) ((hdr)->_id)
134 #define IPH_OFFSET(hdr) ((hdr)->_offset)
135 #define IPH_TTL(hdr) (ntohs((hdr)->_ttl_proto) >> 8)
136 #define IPH_PROTO(hdr) (ntohs((hdr)->_ttl_proto) & 0xff)
137 #define IPH_CHKSUM(hdr) ((hdr)->_chksum)
138
139 #define IPH_VHLTOS_SET(hdr, v, hl, tos) (hdr)->_v_hl_tos = (htons(((v) << 12) | ((hl) << 8) | (tos)))
140 #define IPH_LEN_SET(hdr, len) (hdr)->_len = (len)
141 #define IPH_ID_SET(hdr, id) (hdr)->_id = (id)
142 #define IPH_OFFSET_SET(hdr, off) (hdr)->_offset = (off)
143 #define IPH_TTL_SET(hdr, ttl) (hdr)->_ttl_proto = (htons(IPH_PROTO(hdr) | ((ttl) << 8)))
144 #define IPH_PROTO_SET(hdr, proto) (hdr)->_ttl_proto = (htons((proto) | (IPH_TTL(hdr) << 8)))
145 #define IPH_CHKSUM_SET(hdr, chksum) (hdr)->_chksum = (chksum)
146
147 #if IP_DEBUG
148 void ip_debug_print(struct pbuf *p);
149 #else
150 #define ip_debug_print(p)
151 #endif /* IP_DEBUG */
152
153 #endif /* __LWIP_IP_H__ */
154
155