akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 1 | #include <stdio.h> |
| 2 | #include <string.h> |
| 3 | #include <stdlib.h> |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 4 | #include <unistd.h> |
| 5 | #include <getopt.h> |
| 6 | #include <sys/time.h> |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 7 | #include <sys/stat.h> |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 8 | #include <assert.h> |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 9 | #include <sys/types.h> |
| 10 | #include <signal.h> |
| 11 | #include <sys/socket.h> |
| 12 | #include <sys/un.h> |
| 13 | #include <fcntl.h> |
| 14 | #include <sys/ioctl.h> |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 15 | #include <netinet/in.h> |
| 16 | #include <netdb.h> |
| 17 | #include <arpa/inet.h> |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 18 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 19 | #ifdef HAVE_CONFIG_H |
| 20 | #include <config.h> |
| 21 | #endif |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 22 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 23 | #include <ccn/ccn.h> |
| 24 | #include <ccn/uri.h> |
| 25 | #include <ccn/keystore.h> |
| 26 | #include <ccn/signing.h> |
| 27 | #include <ccn/schedule.h> |
| 28 | #include <ccn/hashtb.h> |
| 29 | |
| 30 | #include "nlsr.h" |
| 31 | #include "nlsr_ndn.h" |
akmhoque | 902d57e | 2012-08-17 09:24:38 -0500 | [diff] [blame] | 32 | #include "nlsr_lsdb.h" |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 33 | #include "utility.h" |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 34 | #include "nlsr_npl.h" |
| 35 | #include "nlsr_adl.h" |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 36 | #include "nlsr_npt.h" |
| 37 | #include "nlsr_route.h" |
| 38 | |
| 39 | |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 40 | #define ON_ERROR_DESTROY(resval) \ |
| 41 | { \ |
| 42 | if ((resval) < 0) { \ |
| 43 | nlsr_destroy(); \ |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 44 | exit(1);\ |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 45 | } \ |
| 46 | } |
| 47 | |
| 48 | |
| 49 | #define ON_ERROR_EXIT(resval) \ |
| 50 | { \ |
| 51 | if ((resval) < 0) { \ |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 52 | exit(1); \ |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 53 | } \ |
| 54 | } |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 55 | |
| 56 | struct option longopts[] = |
| 57 | { |
| 58 | { "daemon", no_argument, NULL, 'd'}, |
| 59 | { "config_file", required_argument, NULL, 'f'}, |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 60 | { "api_port", required_argument, NULL, 'p'}, |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 61 | { "help", no_argument, NULL, 'h'}, |
| 62 | { 0 } |
| 63 | }; |
| 64 | |
| 65 | static int |
| 66 | usage(char *progname) |
| 67 | { |
| 68 | |
| 69 | printf("Usage: %s [OPTIONS...]\n\ |
| 70 | NDN routing....\n\ |
| 71 | -d, --daemon Run in daemon mode\n\ |
| 72 | -f, --config_file Specify configuration file name\n\ |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 73 | -p, --api_port port where api client will connect\n\ |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 74 | -h, --help Display this help message\n", progname); |
| 75 | |
| 76 | exit(1); |
| 77 | } |
| 78 | |
| 79 | void ndn_rtr_gettime(const struct ccn_gettime *self, struct ccn_timeval *result) |
| 80 | { |
| 81 | struct timeval now = {0}; |
| 82 | gettimeofday(&now, 0); |
| 83 | result->s = now.tv_sec; |
| 84 | result->micros = now.tv_usec; |
| 85 | } |
| 86 | |
| 87 | static struct ccn_gettime ndn_rtr_ticker = { |
| 88 | "timer", |
| 89 | &ndn_rtr_gettime, |
| 90 | 1000000, |
| 91 | NULL |
| 92 | }; |
| 93 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 94 | void |
| 95 | nlsr_lock(void) |
| 96 | { |
| 97 | nlsr->semaphor=NLSR_LOCKED; |
| 98 | } |
| 99 | |
| 100 | void |
| 101 | nlsr_unlock(void) |
| 102 | { |
| 103 | nlsr->semaphor=NLSR_UNLOCKED; |
| 104 | } |
akmhoque | 42098b1 | 2012-08-27 22:54:23 -0500 | [diff] [blame] | 105 | |
| 106 | void |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 107 | nlsr_stop_signal_handler(int sig) |
akmhoque | 42098b1 | 2012-08-27 22:54:23 -0500 | [diff] [blame] | 108 | { |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 109 | signal(sig, SIG_IGN); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 110 | nlsr_destroy(); |
| 111 | exit(0); |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 112 | } |
| 113 | |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 114 | void |
| 115 | daemonize_nlsr(void) |
| 116 | { |
| 117 | int ret; |
| 118 | pid_t process_id = 0; |
| 119 | pid_t sid = 0; |
| 120 | process_id = fork(); |
| 121 | if (process_id < 0) |
| 122 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 123 | printf("Daemonization failed!\n"); |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 124 | ON_ERROR_DESTROY(process_id); |
| 125 | } |
| 126 | if (process_id > 0) |
| 127 | { |
| 128 | printf("Process daemonized. Process id: %d \n", process_id); |
| 129 | ret=process_id; |
| 130 | exit(0); |
| 131 | } |
| 132 | |
| 133 | umask(0); |
| 134 | sid = setsid(); |
| 135 | if(sid < 0) |
| 136 | { |
| 137 | ON_ERROR_DESTROY(sid); |
| 138 | } |
| 139 | |
| 140 | chdir("/"); |
| 141 | close(STDIN_FILENO); |
| 142 | close(STDOUT_FILENO); |
| 143 | close(STDERR_FILENO); |
| 144 | } |
| 145 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 146 | void |
| 147 | process_command_ccnneighbor(char *command) |
| 148 | { |
| 149 | if(command==NULL) |
| 150 | { |
akmhoque | 28c4502 | 2012-08-09 15:38:02 -0500 | [diff] [blame] | 151 | printf(" Wrong Command Format ( ccnneighbor router_name faceX)\n"); |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 152 | return; |
| 153 | } |
| 154 | char *rem; |
| 155 | const char *sep=" \t\n"; |
akmhoque | 28c4502 | 2012-08-09 15:38:02 -0500 | [diff] [blame] | 156 | char *rtr_name,*face; |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 157 | |
akmhoque | 28c4502 | 2012-08-09 15:38:02 -0500 | [diff] [blame] | 158 | rtr_name=strtok_r(command,sep,&rem); |
| 159 | if(rtr_name==NULL) |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 160 | { |
akmhoque | 28c4502 | 2012-08-09 15:38:02 -0500 | [diff] [blame] | 161 | printf(" Wrong Command Format ( ccnneighbor router_name faceX)\n"); |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 162 | return; |
| 163 | } |
| 164 | |
| 165 | face=strtok_r(NULL,sep,&rem); |
| 166 | if(face==NULL) |
| 167 | { |
akmhoque | 28c4502 | 2012-08-09 15:38:02 -0500 | [diff] [blame] | 168 | printf(" Wrong Command Format ( ccnneighbor router_name faceX)\n"); |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 169 | return; |
| 170 | } |
| 171 | |
akmhoque | 28c4502 | 2012-08-09 15:38:02 -0500 | [diff] [blame] | 172 | printf("Router: %s face: %s\n",rtr_name,face); |
| 173 | int face_id; |
| 174 | int res; |
| 175 | res=sscanf(face,"face%d",&face_id); |
| 176 | |
| 177 | if(res != 1 ) |
| 178 | { |
| 179 | printf(" Wrong Command Format ( ccnneighbor router_name faceX) where X is integer\n"); |
| 180 | return; |
| 181 | } |
| 182 | |
akmhoque | d515212 | 2012-09-19 06:44:23 -0500 | [diff] [blame] | 183 | if ( rtr_name[strlen(rtr_name)-1] == '/' ) |
| 184 | { |
| 185 | rtr_name[strlen(rtr_name)-1]='\0'; |
| 186 | } |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 187 | struct name_prefix *nbr=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 188 | nbr->name=(char *)malloc(strlen(rtr_name)+1); |
| 189 | memset(nbr->name,0,strlen(rtr_name)+1); |
| 190 | memcpy(nbr->name,rtr_name,strlen(rtr_name)+1); |
| 191 | nbr->length=strlen(rtr_name)+1; |
| 192 | |
| 193 | add_nbr_to_adl(nbr,face_id); |
| 194 | |
| 195 | free(nbr->name); |
| 196 | free(nbr); |
| 197 | } |
| 198 | |
| 199 | void |
| 200 | process_command_ccnname(char *command) |
| 201 | { |
| 202 | |
| 203 | if(command==NULL) |
| 204 | { |
| 205 | printf(" Wrong Command Format ( ccnname /name/prefix)\n"); |
| 206 | return; |
| 207 | } |
| 208 | char *rem; |
| 209 | const char *sep=" \t\n"; |
| 210 | char *name; |
| 211 | name=strtok_r(command,sep,&rem); |
| 212 | if(name==NULL) |
| 213 | { |
| 214 | printf(" Wrong Command Format ( ccnname /name/prefix/ )\n"); |
| 215 | return; |
| 216 | } |
| 217 | |
| 218 | printf("Name Prefix: %s \n",name); |
| 219 | |
akmhoque | d515212 | 2012-09-19 06:44:23 -0500 | [diff] [blame] | 220 | if ( name[strlen(name)-1] == '/' ) |
| 221 | name[strlen(name)-1]='\0'; |
| 222 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 223 | struct name_prefix *np=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 224 | np->name=(char *)malloc(strlen(name)+1); |
| 225 | memset(np->name,0,strlen(name)+1); |
| 226 | memcpy(np->name,name,strlen(name)+1); |
| 227 | np->length=strlen(name)+1; |
akmhoque | 386081b | 2012-08-10 10:53:21 -0500 | [diff] [blame] | 228 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 229 | add_name_to_npl(np); |
akmhoque | 28c4502 | 2012-08-09 15:38:02 -0500 | [diff] [blame] | 230 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 231 | free(np->name); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 232 | free(np); |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 233 | } |
| 234 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 235 | |
| 236 | void |
| 237 | process_command_router_name(char *command) |
| 238 | { |
| 239 | if(command==NULL) |
| 240 | { |
| 241 | printf(" Wrong Command Format ( router-name /router/name )\n"); |
| 242 | return; |
| 243 | } |
| 244 | char *rem; |
| 245 | const char *sep=" \t\n"; |
| 246 | char *rtr_name; |
| 247 | |
| 248 | rtr_name=strtok_r(command,sep,&rem); |
| 249 | if(rtr_name==NULL) |
| 250 | { |
| 251 | printf(" Wrong Command Format ( router-name /router/name )\n"); |
| 252 | return; |
| 253 | } |
| 254 | |
| 255 | |
akmhoque | d515212 | 2012-09-19 06:44:23 -0500 | [diff] [blame] | 256 | if ( rtr_name[strlen(rtr_name)-1] == '/' ) |
| 257 | rtr_name[strlen(rtr_name)-1]='\0'; |
| 258 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 259 | nlsr->router_name=(char *)malloc(strlen(rtr_name)+1); |
| 260 | memset(nlsr->router_name,0,strlen(rtr_name)+1); |
| 261 | memcpy(nlsr->router_name,rtr_name,strlen(rtr_name)+1); |
| 262 | |
| 263 | |
| 264 | } |
| 265 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 266 | void |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 267 | process_command_lsdb_synch_interval(char *command) |
| 268 | { |
| 269 | if(command==NULL) |
| 270 | { |
| 271 | printf(" Wrong Command Format ( lsdb-synch-interval secs )\n"); |
| 272 | return; |
| 273 | } |
| 274 | char *rem; |
| 275 | const char *sep=" \t\n"; |
| 276 | char *secs; |
| 277 | long int seconds; |
| 278 | |
| 279 | secs=strtok_r(command,sep,&rem); |
| 280 | if(secs==NULL) |
| 281 | { |
| 282 | printf(" Wrong Command Format ( lsdb-synch-interval secs)\n"); |
| 283 | return; |
| 284 | } |
| 285 | |
| 286 | seconds=atoi(secs); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 287 | if ( seconds >= 120 && seconds <= 3600 ) |
| 288 | { |
| 289 | nlsr->lsdb_synch_interval=seconds; |
| 290 | } |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 291 | |
| 292 | } |
| 293 | |
| 294 | |
| 295 | void |
| 296 | process_command_interest_retry(char *command) |
| 297 | { |
| 298 | if(command==NULL) |
| 299 | { |
| 300 | printf(" Wrong Command Format ( interest-retry number )\n"); |
| 301 | return; |
| 302 | } |
| 303 | char *rem; |
| 304 | const char *sep=" \t\n"; |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 305 | char *retry; |
| 306 | long int retry_number; |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 307 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 308 | retry=strtok_r(command,sep,&rem); |
| 309 | if(retry==NULL) |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 310 | { |
| 311 | printf(" Wrong Command Format ( interest-retry number)\n"); |
| 312 | return; |
| 313 | } |
| 314 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 315 | retry_number=atoi(retry); |
| 316 | if ( retry_number >= 1 && retry_number<=10 ) |
| 317 | { |
| 318 | nlsr->interest_retry=retry_number; |
| 319 | } |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 320 | |
| 321 | } |
| 322 | |
| 323 | void |
| 324 | process_command_interest_resend_time(char *command) |
| 325 | { |
| 326 | if(command==NULL) |
| 327 | { |
| 328 | printf(" Wrong Command Format ( interest-resend-time secs )\n"); |
| 329 | return; |
| 330 | } |
| 331 | char *rem; |
| 332 | const char *sep=" \t\n"; |
| 333 | char *secs; |
| 334 | long int seconds; |
| 335 | |
| 336 | secs=strtok_r(command,sep,&rem); |
| 337 | if(secs==NULL) |
| 338 | { |
| 339 | printf(" Wrong Command Format ( interest-resend-time secs)\n"); |
| 340 | return; |
| 341 | } |
| 342 | |
| 343 | seconds=atoi(secs); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 344 | if ( seconds <= 60 && seconds >= 1 ) |
| 345 | { |
| 346 | nlsr->interest_resend_time=seconds; |
| 347 | } |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 348 | } |
| 349 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 350 | |
akmhoque | d515212 | 2012-09-19 06:44:23 -0500 | [diff] [blame] | 351 | void |
| 352 | process_command_lsa_refresh_time(char *command) |
| 353 | { |
| 354 | if(command==NULL) |
| 355 | { |
| 356 | printf(" Wrong Command Format ( lsa-refresh-time secs )\n"); |
| 357 | return; |
| 358 | } |
| 359 | char *rem; |
| 360 | const char *sep=" \t\n"; |
| 361 | char *secs; |
| 362 | long int seconds; |
| 363 | |
| 364 | secs=strtok_r(command,sep,&rem); |
| 365 | if(secs==NULL) |
| 366 | { |
| 367 | printf(" Wrong Command Format ( lsa-refresh-time secs)\n"); |
| 368 | return; |
| 369 | } |
| 370 | |
| 371 | seconds=atoi(secs); |
| 372 | if ( seconds >= 240 && seconds <= 3600 ) |
| 373 | { |
| 374 | nlsr->lsa_refresh_time=seconds; |
| 375 | } |
| 376 | |
| 377 | } |
| 378 | |
| 379 | void |
| 380 | process_command_router_dead_interval(char *command) |
| 381 | { |
| 382 | if(command==NULL) |
| 383 | { |
| 384 | printf(" Wrong Command Format ( router-dead-interval secs )\n"); |
| 385 | return; |
| 386 | } |
| 387 | char *rem; |
| 388 | const char *sep=" \t\n"; |
| 389 | char *secs; |
| 390 | long int seconds; |
| 391 | |
| 392 | secs=strtok_r(command,sep,&rem); |
| 393 | if(secs==NULL) |
| 394 | { |
| 395 | printf(" Wrong Command Format ( router-dead-interval secs)\n"); |
| 396 | return; |
| 397 | } |
| 398 | |
| 399 | seconds=atoi(secs); |
| 400 | if ( seconds >= 360 && seconds <= 5400 ) |
| 401 | { |
| 402 | nlsr->router_dead_interval=seconds; |
| 403 | } |
| 404 | |
| 405 | } |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 406 | |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 407 | void |
akmhoque | 3cced64 | 2012-09-24 16:20:20 -0500 | [diff] [blame] | 408 | process_command_multi_path_face_num(char *command) |
| 409 | { |
| 410 | if(command==NULL) |
| 411 | { |
| 412 | printf(" Wrong Command Format ( multi-path-face-num n )\n"); |
| 413 | return; |
| 414 | } |
| 415 | char *rem; |
| 416 | const char *sep=" \t\n"; |
| 417 | char *num; |
| 418 | long int number; |
| 419 | |
| 420 | num=strtok_r(command,sep,&rem); |
| 421 | if(num==NULL) |
| 422 | { |
| 423 | printf(" Wrong Command Format ( multi-path-face-num n)\n"); |
| 424 | return; |
| 425 | } |
| 426 | |
| 427 | number=atoi(num); |
| 428 | if ( number >= 0 && number <= 60 ) |
| 429 | { |
| 430 | nlsr->multi_path_face_num=number; |
| 431 | } |
| 432 | |
| 433 | } |
| 434 | |
| 435 | void |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 436 | process_command_logdir(char *command) |
| 437 | { |
| 438 | if(command==NULL) |
| 439 | { |
| 440 | printf(" Wrong Command Format ( logdir /path/to/logdir )\n"); |
| 441 | return; |
| 442 | } |
| 443 | char *rem; |
| 444 | const char *sep=" \t\n"; |
| 445 | char *dir; |
| 446 | |
| 447 | dir=strtok_r(command,sep,&rem); |
| 448 | if(dir==NULL) |
| 449 | { |
| 450 | printf(" Wrong Command Format ( logdir /path/to/logdir/ )\n"); |
| 451 | return; |
| 452 | } |
| 453 | |
| 454 | nlsr->logDir=(char *)malloc(strlen(dir)+1); |
| 455 | memset(nlsr->logDir,0,strlen(dir)+1); |
| 456 | memcpy(nlsr->logDir,dir,strlen(dir)); |
| 457 | } |
| 458 | |
| 459 | void |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 460 | process_command_detailed_log(char *command) |
| 461 | { |
| 462 | if(command==NULL) |
| 463 | { |
| 464 | printf(" Wrong Command Format ( detailed-log on/off )\n"); |
| 465 | return; |
| 466 | } |
| 467 | char *rem; |
| 468 | const char *sep=" \t\n"; |
| 469 | char *on_off; |
| 470 | |
| 471 | on_off=strtok_r(command,sep,&rem); |
| 472 | if(on_off==NULL) |
| 473 | { |
| 474 | printf(" Wrong Command Format ( detailed-log on/off )\n"); |
| 475 | return; |
| 476 | } |
| 477 | |
| 478 | if ( strcmp(on_off,"ON") == 0 || strcmp(on_off,"on") == 0) |
| 479 | { |
| 480 | nlsr->detailed_logging=1; |
| 481 | } |
| 482 | } |
| 483 | |
| 484 | void |
| 485 | process_command_debug(char *command) |
| 486 | { |
| 487 | if(command==NULL) |
| 488 | { |
| 489 | printf(" Wrong Command Format ( debug on/off )\n"); |
| 490 | return; |
| 491 | } |
| 492 | char *rem; |
| 493 | const char *sep=" \t\n"; |
| 494 | char *on_off; |
| 495 | |
| 496 | on_off=strtok_r(command,sep,&rem); |
| 497 | if(on_off==NULL) |
| 498 | { |
| 499 | printf(" Wrong Command Format ( debug on/off )\n"); |
| 500 | return; |
| 501 | } |
| 502 | |
| 503 | if ( strcmp(on_off,"ON") == 0 || strcmp(on_off,"on") == 0 ) |
| 504 | { |
| 505 | nlsr->debugging=1; |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | void |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 510 | process_conf_command(char *command) |
| 511 | { |
| 512 | const char *separators=" \t\n"; |
| 513 | char *remainder=NULL; |
| 514 | char *cmd_type=NULL; |
| 515 | |
| 516 | if(command==NULL || strlen(command)==0 || command[0]=='!') |
| 517 | return; |
| 518 | |
| 519 | cmd_type=strtok_r(command,separators,&remainder); |
| 520 | |
| 521 | if(!strcmp(cmd_type,"router-name") ) |
| 522 | { |
| 523 | process_command_router_name(remainder); |
| 524 | } |
| 525 | else if(!strcmp(cmd_type,"ccnneighbor") ) |
| 526 | { |
| 527 | process_command_ccnneighbor(remainder); |
| 528 | } |
| 529 | else if(!strcmp(cmd_type,"ccnname") ) |
| 530 | { |
| 531 | process_command_ccnname(remainder); |
| 532 | } |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 533 | else if(!strcmp(cmd_type,"lsdb-synch-interval") ) |
| 534 | { |
| 535 | process_command_lsdb_synch_interval(remainder); |
| 536 | } |
| 537 | else if(!strcmp(cmd_type,"interest-retry") ) |
| 538 | { |
| 539 | process_command_interest_retry(remainder); |
| 540 | } |
| 541 | else if(!strcmp(cmd_type,"interest-resend-time") ) |
| 542 | { |
| 543 | process_command_interest_resend_time(remainder); |
| 544 | } |
akmhoque | d515212 | 2012-09-19 06:44:23 -0500 | [diff] [blame] | 545 | else if(!strcmp(cmd_type,"lsa-refresh-time") ) |
| 546 | { |
| 547 | process_command_lsa_refresh_time(remainder); |
| 548 | } |
| 549 | else if(!strcmp(cmd_type,"router-dead-interval") ) |
| 550 | { |
| 551 | process_command_router_dead_interval(remainder); |
| 552 | } |
akmhoque | 3cced64 | 2012-09-24 16:20:20 -0500 | [diff] [blame] | 553 | else if(!strcmp(cmd_type,"multi-path-face-num") ) |
| 554 | { |
| 555 | process_command_multi_path_face_num(remainder); |
| 556 | } |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 557 | else if(!strcmp(cmd_type,"logdir") ) |
| 558 | { |
| 559 | process_command_logdir(remainder); |
| 560 | } |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 561 | else if(!strcmp(cmd_type,"detailed-log") ) |
| 562 | { |
| 563 | process_command_detailed_log(remainder); |
| 564 | } |
| 565 | else if(!strcmp(cmd_type,"debug") ) |
| 566 | { |
| 567 | process_command_debug(remainder); |
| 568 | } |
akmhoque | d515212 | 2012-09-19 06:44:23 -0500 | [diff] [blame] | 569 | else |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 570 | { |
| 571 | printf("Wrong configuration Command %s \n",cmd_type); |
| 572 | } |
| 573 | } |
| 574 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 575 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 576 | int |
| 577 | readConfigFile(const char *filename) |
| 578 | { |
| 579 | FILE *cfg; |
| 580 | char buf[1024]; |
| 581 | int len; |
| 582 | |
| 583 | cfg=fopen(filename, "r"); |
| 584 | |
| 585 | if(cfg == NULL) |
| 586 | { |
| 587 | printf("\nConfiguration File does not exists\n"); |
| 588 | exit(1); |
| 589 | } |
| 590 | |
| 591 | while(fgets((char *)buf, sizeof(buf), cfg)) |
| 592 | { |
| 593 | len=strlen(buf); |
| 594 | if(buf[len-1] == '\n') |
| 595 | buf[len-1]='\0'; |
akmhoque | d515212 | 2012-09-19 06:44:23 -0500 | [diff] [blame] | 596 | if ( buf[0] != '#' && buf[0] != '!') |
| 597 | process_conf_command(buf); |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | fclose(cfg); |
| 601 | |
| 602 | return 0; |
| 603 | } |
| 604 | |
akmhoque | 562caef | 2012-11-09 13:29:06 -0600 | [diff] [blame] | 605 | char * |
| 606 | process_api_client_command(char *command) |
| 607 | { |
| 608 | char *msg; |
| 609 | msg=(char *)malloc(100); |
| 610 | memset(msg,100,0); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 611 | //strcpy(msg,"Action Carried Out for NLSR Api Client"); |
akmhoque | 562caef | 2012-11-09 13:29:06 -0600 | [diff] [blame] | 612 | |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 613 | const char *sep=" \t\n"; |
| 614 | char *rem=NULL; |
| 615 | char *cmd_type=NULL; |
| 616 | char *op_type=NULL; |
| 617 | char *name=NULL; |
| 618 | char *face=NULL; |
| 619 | int face_id; |
| 620 | int res; |
| 621 | |
| 622 | op_type=strtok_r(command,sep,&rem); |
| 623 | cmd_type=strtok_r(NULL,sep,&rem); |
| 624 | name=strtok_r(NULL,sep,&rem); |
| 625 | if ( name[strlen(name)-1] == '/' ) |
| 626 | name[strlen(name)-1]='\0'; |
| 627 | |
| 628 | struct name_prefix *np=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 629 | np->name=(char *)malloc(strlen(name)+1); |
| 630 | memset(np->name,0,strlen(name)+1); |
| 631 | memcpy(np->name,name,strlen(name)+1); |
| 632 | np->length=strlen(name)+1; |
| 633 | |
| 634 | if ( strcmp(cmd_type,"name")!= 0 ) |
| 635 | { |
| 636 | face=strtok_r(NULL,sep,&rem); |
| 637 | sscanf(face,"face%d",&face_id); |
| 638 | } |
akmhoque | 562caef | 2012-11-09 13:29:06 -0600 | [diff] [blame] | 639 | |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 640 | if ( strcmp(cmd_type,"name")== 0 ) |
| 641 | { |
| 642 | if ( strcmp(op_type,"del") == 0 ) |
| 643 | { |
| 644 | res=does_name_exist_in_npl(np); |
| 645 | if ( res == 0) |
| 646 | { |
| 647 | sprintf(msg,"Name %s does not exist !!",name); |
| 648 | } |
| 649 | else |
| 650 | { |
| 651 | long int ls_id=get_lsa_id_from_npl(np); |
| 652 | if ( ls_id != 0 ) |
| 653 | { |
| 654 | make_name_lsa_invalid(np,LS_TYPE_NAME,ls_id); |
| 655 | sprintf(msg,"Name %s has been deleted and Advertised.",name); |
| 656 | } |
| 657 | else |
| 658 | { |
| 659 | sprintf(msg,"Name %s does not have an Name LSA yet !!",name); |
| 660 | } |
| 661 | } |
| 662 | } |
| 663 | else if ( strcmp(op_type,"add") == 0 ) |
| 664 | { |
| 665 | res=does_name_exist_in_npl(np); |
| 666 | if ( res == 0) |
| 667 | { |
| 668 | add_name_to_npl(np); |
| 669 | build_and_install_single_name_lsa(np); |
| 670 | sprintf(msg,"Name %s has been added to advertise.",name); |
| 671 | } |
| 672 | else |
| 673 | { |
| 674 | sprintf(msg,"Name %s has already been advertised from this router !!",name); |
| 675 | } |
| 676 | } |
| 677 | } |
| 678 | else if ( strcmp(cmd_type,"neighbor") == 0 ) |
| 679 | { |
| 680 | if ( strcmp(op_type,"del") == 0 ) |
| 681 | { |
| 682 | res=is_neighbor(np->name); |
| 683 | if ( res == 0) |
| 684 | { |
| 685 | sprintf(msg,"Neighbor %s does not exist !!",name); |
| 686 | } |
| 687 | else |
| 688 | { |
| 689 | update_adjacent_status_to_adl(np,NBR_DOWN); |
| 690 | delete_nbr_from_adl(np); |
| 691 | if(!nlsr->is_build_adj_lsa_sheduled) |
| 692 | { |
| 693 | nlsr->event_build_adj_lsa = ccn_schedule_event(nlsr->sched, 1000, &build_and_install_adj_lsa, NULL, 0); |
| 694 | nlsr->is_build_adj_lsa_sheduled=1; |
| 695 | } |
| 696 | sprintf(msg,"Neighbor %s has been deleted from adjacency list.",name); |
| 697 | } |
| 698 | } |
| 699 | else if ( strcmp(op_type,"add") == 0 ) |
| 700 | { |
| 701 | res=is_neighbor(np->name); |
| 702 | if ( res == 0 ) |
| 703 | { |
| 704 | add_nbr_to_adl(np,face_id); |
| 705 | sprintf(msg,"Neighbor %s has been added to adjacency list.",name); |
| 706 | } |
| 707 | else |
| 708 | { |
| 709 | sprintf(msg,"Neighbor %s already exists in adjacency list.",name); |
| 710 | } |
| 711 | } |
| 712 | } |
| 713 | |
akmhoque | 562caef | 2012-11-09 13:29:06 -0600 | [diff] [blame] | 714 | |
| 715 | return msg; |
| 716 | } |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 717 | |
| 718 | int |
| 719 | nlsr_api_server_poll(long int time_out_micro_sec, int ccn_fd) |
| 720 | { |
| 721 | struct timeval timeout; |
| 722 | if ( time_out_micro_sec < 0 ) |
| 723 | { |
| 724 | timeout.tv_sec=1; |
| 725 | timeout.tv_usec=0; |
| 726 | } |
| 727 | else |
| 728 | { |
| 729 | time_out_micro_sec=(long int)time_out_micro_sec*0.4; |
| 730 | timeout.tv_sec=time_out_micro_sec / 1000000; |
| 731 | timeout.tv_usec=time_out_micro_sec % 1000000; |
| 732 | } |
| 733 | |
| 734 | |
| 735 | int fd; |
| 736 | int nread; |
| 737 | int result; |
| 738 | fd_set testfds; |
| 739 | unsigned int client_len; |
| 740 | int client_sockfd; |
| 741 | char recv_buffer[1024]; |
| 742 | bzero(recv_buffer,1024); |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 743 | struct sockaddr_in client_address; |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 744 | |
| 745 | testfds=nlsr->readfds; |
| 746 | result = select(FD_SETSIZE, &testfds, NULL,NULL, &timeout); |
| 747 | |
| 748 | for(fd = 0; fd < FD_SETSIZE; fd++) |
| 749 | { |
| 750 | if(FD_ISSET(fd,&testfds)) |
| 751 | { |
| 752 | if ( fd == ccn_fd ) |
| 753 | { |
| 754 | return 0; |
| 755 | } |
| 756 | else if(fd == nlsr->nlsr_api_server_sock_fd) |
| 757 | { |
| 758 | client_len = sizeof(client_address); |
| 759 | client_sockfd = accept(nlsr->nlsr_api_server_sock_fd,(struct sockaddr *)&client_address, &client_len); |
| 760 | FD_SET(client_sockfd, &nlsr->readfds); |
| 761 | } |
| 762 | else |
| 763 | { |
| 764 | |
| 765 | ioctl(fd, FIONREAD, &nread); |
| 766 | if(nread == 0) |
| 767 | { |
| 768 | close(fd); |
| 769 | FD_CLR(fd, &nlsr->readfds); |
| 770 | } |
| 771 | else |
| 772 | { |
| 773 | recv(fd, recv_buffer, 1024, 0); |
| 774 | printf("Received Data from NLSR API cleint: %s \n",recv_buffer); |
akmhoque | 562caef | 2012-11-09 13:29:06 -0600 | [diff] [blame] | 775 | char *msg=process_api_client_command(recv_buffer); |
| 776 | send(fd, msg, strlen(msg),0); |
| 777 | free(msg); |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 778 | close(fd); |
| 779 | FD_CLR(fd, &nlsr->readfds); |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 780 | } |
| 781 | } |
| 782 | } |
| 783 | } |
| 784 | |
| 785 | return 0; |
| 786 | } |
| 787 | |
akmhoque | 386081b | 2012-08-10 10:53:21 -0500 | [diff] [blame] | 788 | void |
| 789 | nlsr_destroy( void ) |
| 790 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 791 | if ( nlsr->debugging ) |
| 792 | { |
| 793 | printf("Freeing Allocated Memory....\n"); |
| 794 | } |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 795 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Freeing Allocated Memory....\n"); |
akmhoque | fbfd098 | 2012-09-09 20:59:03 -0500 | [diff] [blame] | 796 | /* Destroying all face created by nlsr in CCND */ |
| 797 | destroy_all_face_by_nlsr(); |
| 798 | |
akmhoque | 386081b | 2012-08-10 10:53:21 -0500 | [diff] [blame] | 799 | /* Destroying every hash table attached to each neighbor in ADL before destorying ADL */ |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 800 | hashtb_destroy(&nlsr->npl); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 801 | hashtb_destroy(&nlsr->adl); |
| 802 | hashtb_destroy(&nlsr->lsdb->name_lsdb); |
| 803 | hashtb_destroy(&nlsr->lsdb->adj_lsdb); |
akmhoque | 29c1db5 | 2012-09-07 14:47:43 -0500 | [diff] [blame] | 804 | hashtb_destroy(&nlsr->pit_alsa); |
akmhoque | 3cced64 | 2012-09-24 16:20:20 -0500 | [diff] [blame] | 805 | |
| 806 | //To Do: has to destroy the face_list one by one |
| 807 | |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 808 | hashtb_destroy(&nlsr->routing_table); |
| 809 | |
| 810 | |
| 811 | int i, npt_element; |
| 812 | struct npt_entry *ne; |
| 813 | struct hashtb_enumerator ee; |
| 814 | struct hashtb_enumerator *e = ⅇ |
| 815 | hashtb_start(nlsr->npt, e); |
| 816 | npt_element=hashtb_n(nlsr->npt); |
| 817 | for(i=0;i<npt_element;i++) |
| 818 | { |
| 819 | ne=e->data; |
akmhoque | 3cced64 | 2012-09-24 16:20:20 -0500 | [diff] [blame] | 820 | hashtb_destroy(&ne->name_list); |
| 821 | hashtb_destroy(&ne->face_list); |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 822 | hashtb_next(e); |
| 823 | } |
| 824 | |
| 825 | hashtb_end(e); |
| 826 | hashtb_destroy(&nlsr->npt); |
| 827 | |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 828 | |
| 829 | close(nlsr->nlsr_api_server_sock_fd); |
| 830 | |
akmhoque | 386081b | 2012-08-10 10:53:21 -0500 | [diff] [blame] | 831 | ccn_schedule_destroy(&nlsr->sched); |
| 832 | ccn_destroy(&nlsr->ccn); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 833 | |
| 834 | free(nlsr->lsdb->lsdb_version); |
| 835 | free(nlsr->lsdb); |
| 836 | free(nlsr->router_name); |
akmhoque | 386081b | 2012-08-10 10:53:21 -0500 | [diff] [blame] | 837 | free(nlsr); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 838 | if ( nlsr->debugging ) |
| 839 | { |
| 840 | printf("Finished freeing allocated memory\n"); |
| 841 | } |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 842 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Finished freeing allocated memory\n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 843 | |
akmhoque | 386081b | 2012-08-10 10:53:21 -0500 | [diff] [blame] | 844 | } |
| 845 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 846 | |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 847 | void |
| 848 | init_api_server(int ccn_fd) |
| 849 | { |
| 850 | int server_sockfd; |
| 851 | int server_len; |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 852 | struct sockaddr_in server_address; |
akmhoque | f31f13b | 2012-11-16 09:42:24 -0600 | [diff] [blame] | 853 | unsigned int yes=1; |
| 854 | |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 855 | server_sockfd = socket(AF_INET, SOCK_STREAM, 0); |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 856 | |
| 857 | int flags = fcntl(server_sockfd, F_GETFL, 0); |
| 858 | fcntl(server_sockfd, F_SETFL, O_NONBLOCK|flags); |
| 859 | |
akmhoque | f31f13b | 2012-11-16 09:42:24 -0600 | [diff] [blame] | 860 | if (setsockopt(server_sockfd,SOL_SOCKET,SO_REUSEADDR,&yes,sizeof(yes)) < 0) |
| 861 | { |
| 862 | ON_ERROR_DESTROY(-1); |
| 863 | } |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 864 | |
| 865 | server_address.sin_family = AF_INET; |
| 866 | server_address.sin_addr.s_addr = inet_addr("127.0.0.1"); |
| 867 | server_address.sin_port = nlsr->api_port; |
| 868 | |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 869 | server_len = sizeof(server_address); |
| 870 | bind(server_sockfd, (struct sockaddr *)&server_address, server_len); |
| 871 | listen(server_sockfd, 100); |
| 872 | FD_ZERO(&nlsr->readfds); |
| 873 | FD_SET(server_sockfd, &nlsr->readfds); |
| 874 | FD_SET(ccn_fd, &nlsr->readfds); |
| 875 | nlsr->nlsr_api_server_sock_fd=server_sockfd; |
| 876 | |
| 877 | } |
| 878 | |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 879 | int |
akmhoque | 902d57e | 2012-08-17 09:24:38 -0500 | [diff] [blame] | 880 | init_nlsr(void) |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 881 | { |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 882 | if (signal(SIGQUIT, nlsr_stop_signal_handler ) == SIG_ERR) |
| 883 | { |
| 884 | perror("SIGQUIT install error\n"); |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 885 | return -1; |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 886 | } |
| 887 | if (signal(SIGTERM, nlsr_stop_signal_handler ) == SIG_ERR) |
| 888 | { |
| 889 | perror("SIGTERM install error\n"); |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 890 | return -1; |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 891 | } |
| 892 | if (signal(SIGINT, nlsr_stop_signal_handler ) == SIG_ERR) |
| 893 | { |
| 894 | perror("SIGTERM install error\n"); |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 895 | return -1; |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 896 | } |
akmhoque | 902d57e | 2012-08-17 09:24:38 -0500 | [diff] [blame] | 897 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 898 | nlsr=(struct nlsr *)malloc(sizeof(struct nlsr)); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 899 | |
| 900 | struct hashtb_param param_adl = {0}; |
akmhoque | 28c4502 | 2012-08-09 15:38:02 -0500 | [diff] [blame] | 901 | nlsr->adl=hashtb_create(sizeof(struct ndn_neighbor), ¶m_adl); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 902 | struct hashtb_param param_npl = {0}; |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 903 | nlsr->npl = hashtb_create(sizeof(struct name_prefix_list_entry), ¶m_npl); |
akmhoque | 29c1db5 | 2012-09-07 14:47:43 -0500 | [diff] [blame] | 904 | struct hashtb_param param_pit_alsa = {0}; |
akmhoque | 1ce7105 | 2012-09-13 22:51:32 -0500 | [diff] [blame] | 905 | nlsr->pit_alsa = hashtb_create(sizeof(struct pending_interest), ¶m_pit_alsa); |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 906 | struct hashtb_param param_npt = {0}; |
| 907 | nlsr->npt = hashtb_create(sizeof(struct npt_entry), ¶m_npt); |
| 908 | struct hashtb_param param_rte = {0}; |
| 909 | nlsr->routing_table = hashtb_create(sizeof(struct routing_table_entry), ¶m_rte); |
akmhoque | 29c1db5 | 2012-09-07 14:47:43 -0500 | [diff] [blame] | 910 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 911 | nlsr->in_interest.p = &incoming_interest; |
| 912 | nlsr->in_content.p = &incoming_content; |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 913 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 914 | nlsr->lsdb=(struct linkStateDatabase *)malloc(sizeof(struct linkStateDatabase)); |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 915 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 916 | char *time_stamp=(char *)malloc(20); |
| 917 | memset(time_stamp,0,20); |
| 918 | get_current_timestamp_micro(time_stamp); |
| 919 | nlsr->lsdb->lsdb_version=(char *)malloc(strlen(time_stamp)+1); |
| 920 | memset(nlsr->lsdb->lsdb_version,'0',strlen(time_stamp)); |
| 921 | free(time_stamp); |
| 922 | |
| 923 | struct hashtb_param param_adj_lsdb = {0}; |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 924 | nlsr->lsdb->adj_lsdb = hashtb_create(sizeof(struct alsa), ¶m_adj_lsdb); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 925 | struct hashtb_param param_name_lsdb = {0}; |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 926 | nlsr->lsdb->name_lsdb = hashtb_create(sizeof(struct nlsa), ¶m_name_lsdb); |
akmhoque | 29c1db5 | 2012-09-07 14:47:43 -0500 | [diff] [blame] | 927 | |
| 928 | |
akmhoque | 902d57e | 2012-08-17 09:24:38 -0500 | [diff] [blame] | 929 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 930 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 931 | nlsr->is_synch_init=1; |
akmhoque | c928669 | 2012-08-16 09:57:58 -0500 | [diff] [blame] | 932 | nlsr->nlsa_id=0; |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 933 | nlsr->adj_build_flag=0; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 934 | nlsr->adj_build_count=0; |
| 935 | nlsr->is_build_adj_lsa_sheduled=0; |
akmhoque | 29c1db5 | 2012-09-07 14:47:43 -0500 | [diff] [blame] | 936 | nlsr->is_send_lsdb_interest_scheduled=0; |
| 937 | nlsr->is_route_calculation_scheduled=0; |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 938 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 939 | nlsr->detailed_logging=0; |
| 940 | nlsr->debugging=0; |
| 941 | |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 942 | nlsr->lsdb_synch_interval = LSDB_SYNCH_INTERVAL; |
| 943 | nlsr->interest_retry = INTEREST_RETRY; |
| 944 | nlsr->interest_resend_time = INTEREST_RESEND_TIME; |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 945 | nlsr->lsa_refresh_time=LSA_REFRESH_TIME; |
| 946 | nlsr->router_dead_interval=ROUTER_DEAD_INTERVAL; |
akmhoque | 3cced64 | 2012-09-24 16:20:20 -0500 | [diff] [blame] | 947 | nlsr->multi_path_face_num=MULTI_PATH_FACE_NUM; |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 948 | nlsr->semaphor=NLSR_UNLOCKED; |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 949 | |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 950 | nlsr->api_port=API_PORT; |
| 951 | |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 952 | return 0; |
akmhoque | 902d57e | 2012-08-17 09:24:38 -0500 | [diff] [blame] | 953 | } |
| 954 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 955 | |
akmhoque | 902d57e | 2012-08-17 09:24:38 -0500 | [diff] [blame] | 956 | int |
| 957 | main(int argc, char *argv[]) |
| 958 | { |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 959 | int res, ret; |
akmhoque | 902d57e | 2012-08-17 09:24:38 -0500 | [diff] [blame] | 960 | char *config_file; |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 961 | int daemon_mode=0; |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 962 | int port=0; |
akmhoque | 902d57e | 2012-08-17 09:24:38 -0500 | [diff] [blame] | 963 | |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 964 | |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 965 | |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 966 | while ((res = getopt_long(argc, argv, "df:p:h", longopts, 0)) != -1) |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 967 | { |
| 968 | switch (res) |
| 969 | { |
| 970 | case 'd': |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 971 | daemon_mode = 1; |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 972 | break; |
| 973 | case 'f': |
| 974 | config_file = optarg; |
| 975 | break; |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 976 | case 'p': |
| 977 | port = atoi(optarg); |
| 978 | break; |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 979 | case 'h': |
| 980 | default: |
| 981 | usage(argv[0]); |
| 982 | } |
| 983 | } |
| 984 | |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 985 | ret=init_nlsr(); |
| 986 | ON_ERROR_EXIT(ret); |
akmhoque | 9504180 | 2012-11-16 09:18:02 -0600 | [diff] [blame] | 987 | |
| 988 | if ( port !=0 ) |
| 989 | nlsr->api_port=port; |
| 990 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 991 | readConfigFile(config_file); |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 992 | if ( daemon_mode == 1 ) |
| 993 | { |
| 994 | daemonize_nlsr(); |
| 995 | } |
| 996 | |
| 997 | startLogging(nlsr->logDir); |
| 998 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 999 | nlsr->ccn=ccn_create(); |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 1000 | int ccn_fd=ccn_connect(nlsr->ccn, NULL); |
| 1001 | if(ccn_fd == -1) |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1002 | { |
| 1003 | fprintf(stderr,"Could not connect to ccnd\n"); |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 1004 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Could not connect to ccnd\n"); |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 1005 | ON_ERROR_DESTROY(-1); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1006 | } |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 1007 | |
| 1008 | init_api_server(ccn_fd); |
| 1009 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1010 | struct ccn_charbuf *router_prefix; |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1011 | router_prefix=ccn_charbuf_create(); |
| 1012 | res=ccn_name_from_uri(router_prefix,nlsr->router_name); |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 1013 | if(res<0) |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1014 | { |
| 1015 | fprintf(stderr, "Bad ccn URI: %s\n",nlsr->router_name); |
akmhoque | bfefef2 | 2012-09-26 10:09:34 -0500 | [diff] [blame] | 1016 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Bad ccn URI: %s\n",nlsr->router_name); |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 1017 | ON_ERROR_DESTROY(res); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1018 | } |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 1019 | |
| 1020 | ccn_name_append_str(router_prefix,"nlsr"); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1021 | nlsr->in_interest.data=nlsr->router_name; |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 1022 | res=ccn_set_interest_filter(nlsr->ccn,router_prefix,&nlsr->in_interest); |
| 1023 | if ( res < 0 ) |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1024 | { |
| 1025 | fprintf(stderr,"Failed to register interest for router\n"); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 1026 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Failed to register interest for router\n"); |
akmhoque | 81c25e0 | 2012-09-10 14:50:33 -0500 | [diff] [blame] | 1027 | ON_ERROR_DESTROY(res); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1028 | } |
| 1029 | ccn_charbuf_destroy(&router_prefix); |
| 1030 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1031 | if ( nlsr->debugging ) |
| 1032 | printf("Router Name : %s\n",nlsr->router_name); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 1033 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Router Name : %s\n",nlsr->router_name); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1034 | if ( nlsr->debugging ) |
| 1035 | printf("lsdb_version: %s\n",nlsr->lsdb->lsdb_version); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 1036 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"lsdb_version: %s\n",nlsr->lsdb->lsdb_version); |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 1037 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1038 | print_name_prefix_from_npl(); |
| 1039 | print_adjacent_from_adl(); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1040 | build_and_install_name_lsas(); |
| 1041 | print_name_lsdb(); |
| 1042 | |
| 1043 | nlsr->sched = ccn_schedule_create(nlsr, &ndn_rtr_ticker); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1044 | nlsr->event_send_info_interest = ccn_schedule_event(nlsr->sched, 1, &send_info_interest, NULL, 0); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1045 | nlsr->event = ccn_schedule_event(nlsr->sched, 60000000, &refresh_lsdb, NULL, 0); |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 1046 | |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 1047 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 1048 | while(1) |
akmhoque | 29c1db5 | 2012-09-07 14:47:43 -0500 | [diff] [blame] | 1049 | { |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1050 | if ( nlsr->semaphor == NLSR_UNLOCKED ) |
akmhoque | 29c1db5 | 2012-09-07 14:47:43 -0500 | [diff] [blame] | 1051 | { |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1052 | if( nlsr->sched != NULL ) |
| 1053 | { |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 1054 | long int micro_sec=ccn_schedule_run(nlsr->sched); |
| 1055 | res=nlsr_api_server_poll(micro_sec,ccn_fd); |
| 1056 | ON_ERROR_DESTROY(res); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1057 | } |
| 1058 | if(nlsr->ccn != NULL) |
| 1059 | { |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 1060 | res = ccn_run(nlsr->ccn, 0); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1061 | } |
| 1062 | if (!(nlsr->sched && nlsr->ccn)) |
| 1063 | { |
| 1064 | break; |
| 1065 | } |
akmhoque | 29c1db5 | 2012-09-07 14:47:43 -0500 | [diff] [blame] | 1066 | } |
| 1067 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 1068 | } |
akmhoque | 1771c41 | 2012-11-09 13:06:08 -0600 | [diff] [blame] | 1069 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 1070 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 1071 | return 0; |
| 1072 | } |
| 1073 | |