-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathip.h
66 lines (56 loc) · 1.29 KB
/
ip.h
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
#ifndef _IP_H_
#define _IP_H_
#include <linux/types.h>
#include "tbuf.h"
#include "iface.h"
#define MTU_LEN 1500
#define PROTO_NUM 32
struct iphdr {
__u8 ihl:4,
version:4;
__u8 tos;
__u16 tot_len;
__u16 id;
__u16 frag_off;
__u8 ttl;
__u8 protocol;
__u16 check;
__u32 saddr;
__u32 daddr;
/*The options start here. */
}__attribute__((packed));
#define IP_ICMP 1
#define IP_UDP 17
#define IP_TCP 6
struct route {
struct route* next;
struct iface* dev;
__u32 isdefault;
__u32 gateway;
__u32 mask;
};
struct route *route_table;
struct route *default_route;
#define GETROUTE() \
route_table
#define ADDROUTE(route) \
route->next = route_table; \
route_table = route
#define ip_netcmp(ip1, ip2, mask) \
!((ip1 ^ ip2) & mask)
#define is_broadcast(ip, mask) \
(ip & ~mask) == (0xffffffff & ~mask)
typedef void *(*l3_handler)(struct tbuf *buf);
struct l3proto {
__u8 type;
l3_handler handler;
} l3protos[PROTO_NUM];
void ip_to_string(char *ip, __u32 yiaddr);
void dump_ip(__u32 addr);
void set_default_route(struct route *gw);
int ip_out(struct tbuf *buf, __u32 src, __u32 dst, __u8 ttl,
__u8 protocol);
struct route* ip_out_route(__u32 daddr);
int ip_in(struct tbuf *buf);
int ip_init();
#endif