-
Notifications
You must be signed in to change notification settings - Fork 2
/
sr_main.c
317 lines (268 loc) · 8.24 KB
/
sr_main.c
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
/*-----------------------------------------------------------------------------
* File: sr_main.c
* Date: Fall 2009
* Authors: Guido Apanzeller, Vikram Vijayaraghaven, Martin Casado
* Contact: dgu@cs.stanford.edu
*
* Based on many generations of sr clients including the original c client
* and bert.
*
* Description:
*
* Driver file for sr
*
*---------------------------------------------------------------------------*/
#ifdef _SOLARIS_
#define __EXTENSIONS__
#endif /* _SOLARIS_ */
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include <unistd.h>
#include <pwd.h>
#include <sys/types.h>
#ifdef _LINUX_
#include <getopt.h>
#endif /* _LINUX_ */
#include "sr_dumper.h"
#include "sr_router.h"
#include "sr_rt.h"
extern char* optarg;
/*-----------------------------------------------------------------------------
*---------------------------------------------------------------------------*/
#define VERSION_INFO "VNS sr stub code revised 2009-10-14 (rev 0.20)"
#define DEFAULT_PORT 8888
#define DEFAULT_HOST "vrhost"
#define DEFAULT_SERVER "localhost"
#define DEFAULT_RTABLE "rtable"
#define DEFAULT_TOPO 0
static void usage(char* );
static void sr_init_instance(struct sr_instance* );
static void sr_destroy_instance(struct sr_instance* );
static void sr_set_user(struct sr_instance* );
static void sr_load_rt_wrap(struct sr_instance* sr, char* rtable);
/*-----------------------------------------------------------------------------
*---------------------------------------------------------------------------*/
int main(int argc, char **argv)
{
int c;
char *host = DEFAULT_HOST;
char *user = 0;
char *server = DEFAULT_SERVER;
char *rtable = DEFAULT_RTABLE;
char *template = NULL;
unsigned int port = DEFAULT_PORT;
unsigned int topo = DEFAULT_TOPO;
char *logfile = 0;
struct sr_instance sr;
printf("Using %s\n", VERSION_INFO);
while ((c = getopt(argc, argv, "hs:v:p:u:t:r:l:T:")) != EOF)
{
switch (c)
{
case 'h':
usage(argv[0]);
exit(0);
break;
case 'p':
port = atoi((char *) optarg);
break;
case 't':
topo = atoi((char *) optarg);
break;
case 'v':
host = optarg;
break;
case 'u':
user = optarg;
break;
case 's':
server = optarg;
break;
case 'l':
logfile = optarg;
break;
case 'r':
rtable = optarg;
break;
case 'T':
template = optarg;
break;
} /* switch */
} /* -- while -- */
/* -- zero out sr instance -- */
sr_init_instance(&sr);
/* -- set up routing table from file -- */
if(template == NULL) {
sr.template[0] = '\0';
sr_load_rt_wrap(&sr, rtable);
}
else
strncpy(sr.template, template, 30);
sr.topo_id = topo;
strncpy(sr.host,host,32);
if(! user )
{ sr_set_user(&sr); }
else
{ strncpy(sr.user, user, 32); }
/* -- set up file pointer for logging of raw packets -- */
if(logfile != 0)
{
sr.logfile = sr_dump_open(logfile,0,PACKET_DUMP_SIZE);
if(!sr.logfile)
{
fprintf(stderr,"Error opening up dump file %s\n",
logfile);
exit(1);
}
}
Debug("Client %s connecting to Server %s:%d\n", sr.user, server, port);
if(template)
Debug("Requesting topology template %s\n", template);
else
Debug("Requesting topology %d\n", topo);
/* connect to server and negotiate session */
if(sr_connect_to_server(&sr,port,server) == -1)
{
return 1;
}
if(template != NULL && strcmp(rtable, "rtable.vrhost") == 0) { /* we've recv'd the rtable now, so read it in */
Debug("Connected to new instantiation of topology template %s\n", template);
sr_load_rt_wrap(&sr, "rtable.vrhost");
}
else {
/* Read from specified routing table */
sr_load_rt_wrap(&sr, rtable);
}
/* call router init (for arp subsystem etc.) */
sr_init(&sr);
/* -- whizbang main loop ;-) */
while( sr_read_from_server(&sr) == 1);
sr_destroy_instance(&sr);
return 0;
}/* -- main -- */
/*-----------------------------------------------------------------------------
* Method: usage(..)
* Scope: local
*---------------------------------------------------------------------------*/
static void usage(char* argv0)
{
printf("Simple Router Client\n");
printf("Format: %s [-h] [-v host] [-s server] [-p port] \n",argv0);
printf(" [-T template_name] [-u username] \n");
printf(" [-t topo id] [-r routing table] \n");
printf(" [-l log file] \n");
printf(" defaults server=%s port=%d host=%s \n",
DEFAULT_SERVER, DEFAULT_PORT, DEFAULT_HOST );
} /* -- usage -- */
/*-----------------------------------------------------------------------------
* Method: sr_set_user(..)
* Scope: local
*---------------------------------------------------------------------------*/
void sr_set_user(struct sr_instance* sr)
{
uid_t uid = getuid();
struct passwd* pw = 0;
/* REQUIRES */
assert(sr);
if(( pw = getpwuid(uid) ) == 0)
{
fprintf (stderr, "Error getting username, using something silly\n");
strncpy(sr->user, "something_silly", 32);
}
else
{
strncpy(sr->user, pw->pw_name, 32);
}
} /* -- sr_set_user -- */
/*-----------------------------------------------------------------------------
* Method: sr_destroy_instance(..)
* Scope: Local
*
*
*----------------------------------------------------------------------------*/
static void sr_destroy_instance(struct sr_instance* sr)
{
/* REQUIRES */
assert(sr);
if(sr->logfile)
{
sr_dump_close(sr->logfile);
}
/*
fprintf(stderr,"sr_destroy_instance leaking memory\n");
*/
} /* -- sr_destroy_instance -- */
/*-----------------------------------------------------------------------------
* Method: sr_init_instance(..)
* Scope: Local
*
*
*----------------------------------------------------------------------------*/
static void sr_init_instance(struct sr_instance* sr)
{
/* REQUIRES */
assert(sr);
sr->sockfd = -1;
sr->user[0] = 0;
sr->host[0] = 0;
sr->topo_id = 0;
sr->if_list = 0;
sr->routing_table = 0;
sr->logfile = 0;
} /* -- sr_init_instance -- */
/*-----------------------------------------------------------------------------
* Method: sr_verify_routing_table()
* Scope: Global
*
* make sure the routing table is consistent with the interface list by
* verifying that all interfaces used in the routing table actually exist
* in the hardware.
*
* RETURN VALUES:
*
* 0 on success
* something other than zero on error
*
*---------------------------------------------------------------------------*/
int sr_verify_routing_table(struct sr_instance* sr)
{
struct sr_rt* rt_walker = 0;
struct sr_if* if_walker = 0;
int ret = 0;
/* -- REQUIRES --*/
assert(sr);
if( (sr->if_list == 0) || (sr->routing_table == 0))
{
return 999; /* doh! */
}
rt_walker = sr->routing_table;
while(rt_walker)
{
/* -- check to see if interface exists -- */
if_walker = sr->if_list;
while(if_walker)
{
if( strncmp(if_walker->name,rt_walker->interface,sr_IFACE_NAMELEN)
== 0)
{ break; }
if_walker = if_walker->next;
}
if(if_walker == 0)
{ ret++; } /* -- interface not found! -- */
rt_walker = rt_walker->next;
} /* -- while -- */
return ret;
} /* -- sr_verify_routing_table -- */
static void sr_load_rt_wrap(struct sr_instance* sr, char* rtable) {
if(sr_load_rt(sr, rtable) != 0) {
fprintf(stderr,"Error setting up routing table from file %s\n",
rtable);
exit(1);
}
printf("Loading routing table\n");
printf("---------------------------------------------\n");
sr_print_routing_table(sr);
printf("---------------------------------------------\n");
}