File: address.cc

package info (click to toggle)
ns2 2.35%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 78,796 kB
  • sloc: cpp: 172,923; tcl: 107,130; perl: 6,391; sh: 6,143; ansic: 5,846; makefile: 816; awk: 525; csh: 355
file content (319 lines) | stat: -rw-r--r-- 7,767 bytes parent folder | download | duplicates (8)
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
/* -*-	Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
/*
 * Copyright (c) 1990-1997 Regents of the University of California.
 * 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. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by the Computer Systems
 *	Engineering Group at Lawrence Berkeley Laboratory.
 * 4. Neither the name of the University nor of the Laboratory may be used
 *    to endorse or promote products derived from this software without
 *    specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
 *
 * $Header: /cvsroot/nsnam/ns-2/routing/address.cc,v 1.27 2005/07/27 01:13:44 tomh Exp $
 */

#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include "address.h"
#include "route.h"

static class AddressClass : public TclClass {
public:
	AddressClass() : TclClass("Address") {} 
	TclObject* create(int, const char*const*) {
		return (new Address());
	}
} class_address;


Address* Address::instance_;

Address::Address() : 
	NodeShift_(NULL), NodeMask_(NULL), McastShift_(0), McastMask_(0), 
	levels_(0)
{
}


Address::~Address() 
{ 
	delete [] NodeShift_;
	delete [] NodeMask_;
}

int Address::command(int argc, const char*const* argv)
{
	int i, c, temp=0;

	Tcl& tcl = Tcl::instance();
	if ((instance_ == 0) || (instance_ != this))
		instance_ = this;
	if (argc == 3) {
		if (strcmp(argv[1], "str2addr") == 0) {
			tcl.resultf("%d", str2addr(argv[2]));
			return (TCL_OK);
		}
	}
	if (argc >= 3) {
		if (strcmp(argv[1], "bpl-are") == 0) {
			if (levels_ != (argc-2)) {
				tcl.resultf("#bpl don't match with #hier levels\n");
				return (TCL_ERROR);
			}
			bpl_ = new int[levels_ + 1];
			for (c=1; c<=levels_; c++)
				bpl_[c] = atoi(argv[c+1]);
			return TCL_OK;
		}
	}
 	if (argc == 4) {
		if (strcmp(argv[1], "mcastbits-are") == 0) {
			McastShift_ = atoi(argv[2]);
			McastMask_ = atoi(argv[3]);
			return (TCL_OK);
		}
	}
	if (argc >= 4) {
		if (strcmp(argv[1], "add-hier") == 0) {
			/*
			 * <address> add-hier <level> <mask> <shift>
			 */
			int level = atoi(argv[2]);
			int mask = atoi(argv[3]);
			int shift = atoi(argv[4]);
			if (levels_ < level)
				levels_ = level;
			NodeShift_[level] = shift;
			NodeMask_[level] = mask;
			return (TCL_OK);
		}

		if (strcmp(argv[1], "idsbits-are") == 0) {
			temp = (argc - 2)/2;
			if (levels_) { 
				if (temp != levels_) {
					tcl.resultf("#idshiftbits don't match with #hier levels\n");
					return (TCL_ERROR);
				}
			}
			else 
				levels_ = temp;
			NodeShift_ = new int[levels_ + 1];
			for (i = 3, c = 1; c <= levels_; c++, i+=2)
				NodeShift_[c] = atoi(argv[i]);
			return (TCL_OK); 
		}
	
		if (strcmp(argv[1], "idmbits-are") == 0) {
			temp = (argc - 2)/2;
			if (levels_) { 
				if (temp != levels_) {
					tcl.resultf("#idmaskbits don't match with #hier levels\n");
					return (TCL_ERROR);
				}
			}
			else 
				levels_ = temp;
			NodeMask_ = new int[levels_ + 1];
			for (i = 3, c = 1; c <= levels_; c++, i+=2) 
				NodeMask_[c] = atoi(argv[i]);
			return (TCL_OK);
		}
	}
	return TclObject::command(argc, argv);
}

char *Address::print_nodeaddr(int address)
{
	int a;
	char temp[SMALL_LEN];
	char str[SMALL_LEN];
	char *addrstr;

	str[0] = '\0';
	for (int i=1; i <= levels_; i++) {
		a = address >> NodeShift_[i];
		if (levels_ > 1)
			a = a & NodeMask_[i];
		//if (i < levels_)
		sprintf(temp, "%d.", a);
		//else
		//sprintf(temp, "%d", a);
		
		strcat(str, temp);
	}
	int len;
	len = strlen(str);
	addrstr = new char[len+1];
	str[len-1]= 0; //kill the last dot
	strcpy(addrstr, str);
	// printf("Nodeaddr - %s\n",addrstr);
	return(addrstr);
}

int Address::hier_addr(int address, int level) {
	if (level <= levels_) {
		return ( (address >> NodeShift_[level]) & NodeMask_[level]);
	}
	perror("Address::hier_addr: levels greater than total h_levels_\n");
	return -1;
}

char *Address::get_subnetaddr(int address)
{
	int a;
	char temp[SMALL_LEN];
	char str[SMALL_LEN];
	char *addrstr;

	if (levels_ > 1) {
		str[0] = '\0';
		for (int i=1; i < levels_; i++) {
			a = address >> NodeShift_[i];
			a = a & NodeMask_[i];
			if (i < (levels_-1))
				sprintf(temp, "%d.", a);
			else
				sprintf(temp, "%d", a);
			strcat(str, temp);
		}
		addrstr = new char[strlen(str)+1];
		strcpy(addrstr, str);
		//printf("Subnet_addr - %s\n",addrstr);
		return(addrstr);
	}
	return NULL;
}

// returns nodeaddr in integer form (relevant especially for hier-addr)
int Address::get_nodeaddr(int address)
{
	int a;
	char *temp;
	
	temp = print_nodeaddr(address);
	a = str2addr(temp);
	delete [] temp;
	return a;
}


//Sets address in pkthdr format (having port and node fields)
int Address::create_ipaddr(int nodeid, int)
{
	return nodeid;
	// The following code is obsolete
#if 0
	int address;
	if (levels_ < 2) 
		address = (nodeid & NodeMask_[1]) << NodeShift_[1];
	else 
		address = nodeid;
	address = ((portid & PortMask_) << PortShift_) | \
		((~(PortMask_) << PortShift_) & address);
	return address;
#endif
}

int Address::get_lastaddr(int address)
{
 	int a;
 	a = address >> NodeShift_[levels_];
 	a = a & NodeMask_[levels_];
 	return a;
 }


char *Address::print_portaddr(int address)
{
	char str[SMALL_LEN];
	char *addrstr;

	str[0] = '\0';
#if 0
	int a;
	a = address >> PortShift_;
	a = a & PortMask_;
#endif
	sprintf(str, "%d", address);
	addrstr = new char[strlen(str)+1];
	strcpy(addrstr, str);
	// printf("Portaddr - %s\n",addrstr);

	return(addrstr);
}

// Convert address in string format to binary format (int). 
int Address::str2addr(const char *str) const
{
	
	if (levels_ < 2) {
		int tmp = atoi(str);		
		if (tmp < 0)     
			return (tmp);
		u_int uitmp = (u_int) tmp;
		if (uitmp > ((unsigned long)(1 << bpl_[1])) ) {
			fprintf(stderr, "Error!!\nstr2addr:Address %u outside range of address field length %lu\n", 
				uitmp, ((unsigned long)(1<< bpl_[1])));
			exit(1);
		}
		return tmp;
	}
	/*
	  int istr[levels_], addr= 0;
	*/
	/*
	 * for VC++
	 */

	int *istr= new int[levels_];
	int addr= 0;
	
	RouteLogic::ns_strtok((char*)str, istr);
	for (int i = 0; i < levels_; i++) {
		assert (istr[i] - 1 >= 0);
		if (((unsigned long)--istr[i]) > ((unsigned long)(1 << bpl_[i+1])) ) {
			fprintf(stderr, "Error!!\nstr2addr:Address %d outside range of address field length %lu\n", 
				istr[i], ((unsigned long)(1<< bpl_[i+1])));
			exit(1);
		}
		addr = set_word_field(addr, istr[i],
				      NodeShift_[i+1], NodeMask_[i+1]);
	}
	
	delete [] istr;
	
	return addr;
}