-
Notifications
You must be signed in to change notification settings - Fork 0
/
sr_base_internal.h
143 lines (122 loc) · 4.73 KB
/
sr_base_internal.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
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
/*-----------------------------------------------------------------------------
* file: sr_base_internal.h
* date: Tue Feb 03 11:18:32 PST 2004
* Author: Martin Casado
*
* Description:
*
* House all the definitions for the basic core router definitions. This
* should not be included by any "user level" files such as main or
* network applications that run on the router. Any low level code
* (which would normally be kernel level) will require these definitions).
*
* Low level network code should use the functios:
*
* sr_get_global_instance(..) - to gain a pointer to the global sr context
*
* and
*
* sr_get_subsystem(..) - to get the router subsystem from the context
*
*---------------------------------------------------------------------------*/
#ifndef SR_BASE_INTERNAL_H
#define SR_BASE_INTERNAL_H
#ifdef _LINUX_
#include <stdint.h>
#endif /* _LINUX_ */
#ifdef _DARWIN_
#include <inttypes.h>
#endif /* _DARWIN_ */
#include <stdio.h>
#include <sys/time.h>
#include <netinet/in.h>
#define SR_NAMELEN 32
#define CPU_HW_FILENAME "cpuhw"
/* -- gcc specific vararg macro support ... but its so nice! -- */
#ifdef _DEBUG_
#define Debug(x, args...) printf(x, ## args)
#define DebugIP(x) \
do { struct in_addr addr; addr.s_addr = x; printf("%s",inet_ntoa(addr));\
} while(0)
#define DebugMAC(x) \
do { int ivyl; for(ivyl=0; ivyl<5; ivyl++) printf("%02x:", \
(unsigned char)(x[ivyl])); printf("%02x",(unsigned char)(x[5])); } while (0)
#else
#define Debug(x, args...) do{}while(0)
#define DebugMAC(x) do{}while(0)
#endif
/* ----------------------------------------------------------------------------
* struct sr_vns_if
*
* Abstraction for a VNS virtual host interface
*
* -------------------------------------------------------------------------- */
struct sr_vns_if
{
char name[SR_NAMELEN];
unsigned char addr[6];
uint32_t ip; /* nbo? */
uint32_t mask;
uint32_t speed;
};
/* ----------------------------------------------------------------------------
* struct sr_instance
*
* Encapsulation of the state for a single virtual router.
*
* -------------------------------------------------------------------------- */
struct sr_instance
{
/* VNS specific */
int sockfd; /* socket to server */
char user[32]; /* user name */
char vhost[32]; /* host name */
char lhost[32]; /* host name of machine running client */
char template[30]; /* template name if any */
char auth_key_fn[64]; /* auth key filename */
char rtable[32];/* filename for routing table */
char server[32];
unsigned short topo_id; /* topology id */
struct sockaddr_in sr_addr; /* address to server */
FILE* logfile; /* file to log all received/sent packets to */
volatile uint8_t hw_init; /* bool : hardware has been initialized */
pthread_mutex_t send_lock; /* experimental */
void* interface_subsystem; /* subsystem to send/recv packets from */
};
/* ----------------------------------------------------------------------------
* See method definitions in sr_base.c for detailed explanation of the
* following two methods.
* -------------------------------------------------------------------------*/
void* sr_get_subsystem(struct sr_instance* sr);
void sr_set_subsystem(struct sr_instance* sr, void* core);
struct sr_instance* sr_get_global_instance(struct sr_instance* sr);
/* ----------------------------------------------------------------------------
* Integration methods for calling subsystem (e.g. the router). These
* may be replaced by callback functions that get registered with
* sr_instance.
* -------------------------------------------------------------------------*/
void sr_integ_init(struct sr_instance* );
void sr_integ_hw_setup(struct sr_instance* ); /* called after hwinfo */
void sr_integ_destroy(struct sr_instance* );
void sr_integ_input(struct sr_instance* sr,
const uint8_t * packet/* borrowed */,
unsigned int len,
#ifdef _CPUMODE_
interface_t* intf );
#else
const char* interface );
#endif
void sr_integ_add_interface(struct sr_instance*,
struct sr_vns_if* /* borrowed */);
int sr_integ_output(struct sr_instance* sr /* borrowed */,
uint8_t* buf /* borrowed */ ,
unsigned int len,
const char* iface /* borrowed */);
uint32_t sr_findsrcip(uint32_t dest /* nbo */);
uint32_t sr_integ_ip_output(uint8_t* payload /* given */,
uint8_t proto,
uint32_t src, /* nbo */
uint32_t dest, /* nbo */
int len);
uint32_t sr_integ_findsrcip(uint32_t dest /* nbo */);
#endif /* -- SR_BASE_INTERNAL_H -- */