akmhoque | f1161eb | 2012-08-21 09:37:21 -0400 | [diff] [blame] | 1 | #include<stdio.h> |
| 2 | #include<string.h> |
| 3 | #include<stdlib.h> |
| 4 | #include <unistd.h> |
| 5 | #include <getopt.h> |
| 6 | #include <sys/time.h> |
| 7 | #include <assert.h> |
| 8 | #ifdef HAVE_CONFIG_H |
| 9 | #include <config.h> |
| 10 | #endif |
| 11 | |
| 12 | |
| 13 | #include <ccn/ccn.h> |
| 14 | #include <ccn/uri.h> |
| 15 | #include <ccn/keystore.h> |
| 16 | #include <ccn/signing.h> |
| 17 | #include <ccn/schedule.h> |
| 18 | #include <ccn/hashtb.h> |
| 19 | |
| 20 | #include "nlsr.h" |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 21 | #include "nlsr_ndn.h" |
akmhoque | f1161eb | 2012-08-21 09:37:21 -0400 | [diff] [blame] | 22 | #include "nlsr_lsdb.h" |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 23 | #include "utility.h" |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 24 | #include "nlsr_npl.h" |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 25 | #include "nlsr_adl.h" |
akmhoque | 29c1db5 | 2012-09-07 14:47:43 -0500 | [diff] [blame] | 26 | #include "nlsr_route.h" |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 27 | #include "nlsr_npt.h" |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 28 | #include "nlsr_sync.h" |
akmhoque | 438b07e | 2012-08-21 10:13:57 -0400 | [diff] [blame] | 29 | |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 30 | void |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 31 | set_new_lsdb_version(void) |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 32 | { |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 33 | char *time_stamp=(char *)malloc(20); |
| 34 | memset(time_stamp,0,20); |
| 35 | get_current_timestamp_micro(time_stamp); |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 36 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 37 | free(nlsr->lsdb->lsdb_version); |
| 38 | nlsr->lsdb->lsdb_version=(char *)malloc(strlen(time_stamp)+1); |
| 39 | memset(nlsr->lsdb->lsdb_version,0,strlen(time_stamp)+1); |
| 40 | memcpy(nlsr->lsdb->lsdb_version,time_stamp,strlen(time_stamp)+1); |
| 41 | |
| 42 | free(time_stamp); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 43 | |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 44 | } |
| 45 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 46 | void |
| 47 | make_name_lsa_key(char *key, char *orig_router, int ls_type, long int ls_id) |
| 48 | { |
| 49 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 50 | char lst[2]; |
| 51 | memset(lst,0,2); |
| 52 | sprintf(lst,"%d",ls_type); |
| 53 | |
| 54 | char lsid[10]; |
| 55 | memset(lsid,0,10); |
| 56 | sprintf(lsid,"%ld",ls_id); |
| 57 | |
| 58 | memcpy(key+strlen(key),orig_router,strlen(orig_router)); |
| 59 | memcpy(key+strlen(key),"/",1); |
| 60 | memcpy(key+strlen(key),lst,strlen(lst)); |
| 61 | memcpy(key+strlen(key),"/",1); |
| 62 | memcpy(key+strlen(key),lsid,strlen(lsid)); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 63 | |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 64 | if ( nlsr->debugging ) |
| 65 | printf("name LSA Key: %s\n", key); |
| 66 | } |
| 67 | |
| 68 | |
| 69 | void |
| 70 | make_name_lsa_prefix_for_repo(char *key, char *orig_router, int ls_type, long int ls_id,char *orig_time,char *slice_prefix) |
| 71 | { |
| 72 | sprintf(key,"%s%s/lsType.%d/lsId.%ld/%s",slice_prefix, orig_router, ls_type, ls_id, orig_time); |
| 73 | |
| 74 | if ( nlsr->debugging ) |
| 75 | printf("Name LSA prefix for repo content: %s\n",key); |
| 76 | } |
| 77 | |
| 78 | void |
| 79 | make_adj_lsa_prefix_for_repo(char *key, char *orig_router, int ls_type, char *orig_time,char *slice_prefix) |
| 80 | { |
| 81 | |
| 82 | sprintf(key,"%s%s/lsType.%d/%s",slice_prefix,orig_router,ls_type, orig_time ); |
| 83 | |
| 84 | if ( nlsr->debugging ) |
| 85 | printf("Name LSA prefix for repo content:%s\n",key); |
| 86 | } |
| 87 | |
| 88 | void |
| 89 | make_cor_lsa_prefix_for_repo(char *key, char *orig_router, int ls_type, char *orig_time,char *slice_prefix) |
| 90 | { |
| 91 | |
| 92 | sprintf(key,"%s%s/lsType.%d/%s",slice_prefix,orig_router,ls_type, orig_time ); |
| 93 | |
| 94 | if ( nlsr->debugging ) |
| 95 | printf("Cor LSA prefix for repo content:%s\n",key); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 96 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 97 | |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 98 | void |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 99 | build_and_install_name_lsas(void) |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 100 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 101 | if ( nlsr->debugging ) |
| 102 | printf("build_and_install_name_lsas called \n"); |
| 103 | if ( nlsr->detailed_logging ) |
| 104 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"build_and_install_name_lsas called\n"); |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 105 | |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 106 | int i, npl_element; |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 107 | struct name_prefix_list_entry *npe; |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 108 | |
| 109 | struct hashtb_enumerator ee; |
| 110 | struct hashtb_enumerator *e = ⅇ |
| 111 | |
| 112 | hashtb_start(nlsr->npl, e); |
| 113 | npl_element=hashtb_n(nlsr->npl); |
| 114 | |
| 115 | for(i=0;i<npl_element;i++) |
| 116 | { |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 117 | npe=e->data; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 118 | struct nlsa *name_lsa=(struct nlsa *)malloc(sizeof( struct nlsa )); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 119 | build_name_lsa(name_lsa,npe->np); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 120 | |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 121 | install_name_lsa(name_lsa); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 122 | update_nlsa_id_for_name_in_npl(npe->np,name_lsa->header->ls_id); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 123 | free(name_lsa->header->orig_router->name); |
| 124 | free(name_lsa->header->orig_router); |
| 125 | free(name_lsa->header); |
| 126 | free(name_lsa->name_prefix->name); |
| 127 | free(name_lsa->name_prefix); |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 128 | free(name_lsa); |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 129 | hashtb_next(e); |
| 130 | } |
| 131 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 132 | hashtb_end(e); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 133 | |
| 134 | print_name_prefix_from_npl(); |
| 135 | |
| 136 | } |
| 137 | |
| 138 | void |
| 139 | build_and_install_single_name_lsa(struct name_prefix *np) |
| 140 | { |
| 141 | if ( nlsr->debugging ) |
| 142 | printf("build_and_install_single_name_lsa called \n"); |
| 143 | if ( nlsr->detailed_logging ) |
| 144 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"build_and_install_single_name_lsa called\n"); |
| 145 | |
| 146 | struct nlsa *name_lsa=(struct nlsa *)malloc(sizeof( struct nlsa )); |
| 147 | build_name_lsa(name_lsa,np); |
| 148 | |
| 149 | install_name_lsa(name_lsa); |
| 150 | update_nlsa_id_for_name_in_npl(np,name_lsa->header->ls_id); |
| 151 | |
| 152 | free(name_lsa->header->orig_router->name); |
| 153 | free(name_lsa->header->orig_router); |
| 154 | free(name_lsa->header); |
| 155 | free(name_lsa->name_prefix->name); |
| 156 | free(name_lsa->name_prefix); |
| 157 | free(name_lsa); |
| 158 | |
| 159 | print_name_prefix_from_npl(); |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 160 | |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 161 | } |
| 162 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 163 | void |
| 164 | build_name_lsa(struct nlsa *name_lsa, struct name_prefix *np) |
| 165 | { |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 166 | name_lsa->header=(struct nlsa_header *)malloc(sizeof(struct nlsa_header )); |
| 167 | name_lsa->header->ls_type=LS_TYPE_NAME; |
| 168 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 169 | char *time_stamp=(char *)malloc(20); |
| 170 | memset(time_stamp,0,20); |
| 171 | get_current_timestamp_micro(time_stamp); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 172 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 173 | name_lsa->header->orig_time=(char *)malloc(strlen(time_stamp)+1); //free |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 174 | memset(name_lsa->header->orig_time,0,strlen(time_stamp)+1); |
| 175 | memcpy(name_lsa->header->orig_time,time_stamp,strlen(time_stamp)+1); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 176 | |
| 177 | free(time_stamp); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 178 | |
| 179 | name_lsa->header->ls_id=++nlsr->nlsa_id; |
| 180 | name_lsa->header->orig_router=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 181 | name_lsa->header->orig_router->name=(char *)malloc(strlen(nlsr->router_name)+1); |
| 182 | memset(name_lsa->header->orig_router->name,0,strlen(nlsr->router_name)+1); |
| 183 | memcpy(name_lsa->header->orig_router->name,nlsr->router_name,strlen(nlsr->router_name)+1); |
| 184 | name_lsa->header->orig_router->length=strlen(nlsr->router_name)+1; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 185 | name_lsa->header->isValid=1; |
| 186 | |
| 187 | |
| 188 | name_lsa->name_prefix=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 189 | name_lsa->name_prefix->name=(char *)malloc(np->length); |
| 190 | memcpy(name_lsa->name_prefix->name,np->name,np->length); |
| 191 | name_lsa->name_prefix->length=np->length; |
| 192 | |
| 193 | } |
| 194 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 195 | void |
| 196 | install_name_lsa(struct nlsa *name_lsa) |
| 197 | { |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 198 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 199 | char *time_stamp=(char *)malloc(20); |
| 200 | memset(time_stamp,0,20); |
| 201 | get_current_timestamp_micro(time_stamp); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 202 | |
| 203 | |
| 204 | char lst[2]; |
| 205 | memset(lst,0,2); |
| 206 | sprintf(lst,"%d",name_lsa->header->ls_type); |
| 207 | |
| 208 | char lsid[10]; |
| 209 | memset(lsid,0,10); |
| 210 | sprintf(lsid,"%ld",name_lsa->header->ls_id); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 211 | |
| 212 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 213 | char *key=(char *)malloc(strlen(name_lsa->header->orig_router->name)+1+strlen(lst)+1+strlen(lsid)+1); |
| 214 | memset(key,0,strlen(name_lsa->header->orig_router->name)+1+strlen(lst)+1+strlen(lsid)+1); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 215 | |
| 216 | |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 217 | make_name_lsa_key(key, name_lsa->header->orig_router->name,name_lsa->header->ls_type,name_lsa->header->ls_id); |
| 218 | if ( nlsr->debugging ) |
| 219 | printf("Key:%s Length:%d\n",key,(int)strlen(key)); |
| 220 | if ( nlsr->detailed_logging ) |
| 221 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Key:%s Length:%d\n",key,(int)strlen(key)); |
| 222 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 223 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 224 | struct nlsa *new_name_lsa=(struct nlsa*)malloc(sizeof(struct nlsa )); //free |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 225 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 226 | struct hashtb_enumerator ee; |
| 227 | struct hashtb_enumerator *e = ⅇ |
| 228 | int res; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 229 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 230 | hashtb_start(nlsr->lsdb->name_lsdb, e); |
| 231 | res = hashtb_seek(e, key, strlen(key), 0); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 232 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 233 | if(res == HT_NEW_ENTRY ) |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 234 | { |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 235 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 236 | if ( nlsr->debugging ) |
| 237 | printf("New Name LSA... Adding to LSDB\n"); |
| 238 | if ( nlsr->detailed_logging ) |
| 239 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Name LSA... Adding to LSDB\n"); |
| 240 | |
| 241 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 242 | new_name_lsa = e->data; |
| 243 | |
| 244 | new_name_lsa->header=(struct nlsa_header *)malloc(sizeof(struct nlsa_header )); //free |
| 245 | new_name_lsa->header->ls_type=name_lsa->header->ls_type; |
| 246 | |
| 247 | new_name_lsa->header->orig_time=(char *)malloc(strlen(name_lsa->header->orig_time)+1); |
| 248 | memset(new_name_lsa->header->orig_time,0,strlen(name_lsa->header->orig_time)+1); |
| 249 | memcpy(new_name_lsa->header->orig_time,name_lsa->header->orig_time,strlen(name_lsa->header->orig_time)+1); |
| 250 | |
| 251 | new_name_lsa->header->ls_id=name_lsa->header->ls_id; |
| 252 | new_name_lsa->header->orig_router=(struct name_prefix *)malloc(sizeof(struct name_prefix )); //free |
| 253 | new_name_lsa->header->orig_router->name=(char *)malloc(name_lsa->header->orig_router->length); |
| 254 | memcpy(new_name_lsa->header->orig_router->name,name_lsa->header->orig_router->name,name_lsa->header->orig_router->length); |
| 255 | new_name_lsa->header->orig_router->length=name_lsa->header->orig_router->length; |
| 256 | new_name_lsa->header->isValid=name_lsa->header->isValid; |
| 257 | |
| 258 | |
| 259 | new_name_lsa->name_prefix=(struct name_prefix *)malloc(sizeof(struct name_prefix )); //free |
| 260 | new_name_lsa->name_prefix->name=(char *)malloc(name_lsa->name_prefix->length); |
| 261 | memcpy(new_name_lsa->name_prefix->name,name_lsa->name_prefix->name,name_lsa->name_prefix->length); |
| 262 | new_name_lsa->name_prefix->length=name_lsa->name_prefix->length; |
| 263 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 264 | if ( nlsr->debugging ) |
| 265 | { |
| 266 | printf("New Name LSA Added....\n"); |
| 267 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 268 | } |
| 269 | if ( nlsr->detailed_logging ) |
| 270 | { |
| 271 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Name LSA Added....\n"); |
| 272 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 273 | } |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 274 | set_new_lsdb_version(); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 275 | if ( nlsr->debugging ) |
| 276 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 277 | if ( nlsr->detailed_logging ) |
| 278 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 279 | |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 280 | |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 281 | int num_next_hop=get_number_of_next_hop(new_name_lsa->header->orig_router->name); |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 282 | if ( num_next_hop < 0 ) |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 283 | { |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 284 | int check=add_npt_entry(new_name_lsa->header->orig_router->name,new_name_lsa->name_prefix->name,NO_NEXT_HOP,NULL,NULL); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 285 | if ( check == HT_NEW_ENTRY ) |
| 286 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 287 | if ( nlsr->debugging ) |
| 288 | printf("Added in npt \n"); |
| 289 | if ( nlsr->detailed_logging ) |
| 290 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Added in npt \n"); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 291 | } |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 292 | } |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 293 | else |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 294 | { |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 295 | int *faces=malloc(num_next_hop*sizeof(int)); |
| 296 | int *route_costs=malloc(num_next_hop*sizeof(int)); |
| 297 | int next_hop=get_next_hop(new_name_lsa->header->orig_router->name,faces,route_costs); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 298 | if ( nlsr->debugging ) |
| 299 | { |
| 300 | printf("Printing from install_name_lsa \n"); |
| 301 | int j; |
| 302 | for(j=0;j<num_next_hop;j++) |
| 303 | printf("Face: %d Route Cost: %d \n",faces[j],route_costs[j]); |
| 304 | } |
| 305 | if ( nlsr->detailed_logging ) |
| 306 | { |
| 307 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Printing from install_name_lsa \n"); |
| 308 | int j; |
| 309 | for(j=0;j<num_next_hop;j++) |
| 310 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Face: %d Route Cost: %d \n",faces[j],route_costs[j]); |
| 311 | } |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 312 | int check=add_npt_entry(new_name_lsa->header->orig_router->name,new_name_lsa->name_prefix->name,next_hop,faces,route_costs); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 313 | if ( check == HT_NEW_ENTRY ) |
| 314 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 315 | if ( nlsr->debugging ) |
| 316 | printf("Added in npt \n"); |
| 317 | if ( nlsr->detailed_logging ) |
| 318 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Added in npt \n"); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 319 | } |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 320 | free(faces); |
| 321 | free(route_costs); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 322 | |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 323 | } |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 324 | |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 325 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Name-LSA\n"); |
| 326 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adding name lsa\n"); |
| 327 | write_log_for_name_lsa(new_name_lsa); |
| 328 | writeLogg(__FILE__,__FUNCTION__,__LINE__," name_lsa_end\n"); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 329 | |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 330 | free(time_stamp); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 331 | |
| 332 | } |
| 333 | else if(res == HT_OLD_ENTRY) |
| 334 | { |
| 335 | new_name_lsa=e->data; |
akmhoque | 14b3f34 | 2012-09-14 10:39:02 -0500 | [diff] [blame] | 336 | if(strcmp(name_lsa->header->orig_time,new_name_lsa->header->orig_time)<0) |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 337 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 338 | if ( nlsr->debugging ) |
| 339 | printf("Older Adj LSA. Discarded... \n"); |
| 340 | if ( nlsr->detailed_logging ) |
| 341 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Older Adj LSA. Discarded...\n"); |
akmhoque | 14b3f34 | 2012-09-14 10:39:02 -0500 | [diff] [blame] | 342 | } |
| 343 | else if( strcmp(name_lsa->header->orig_time,new_name_lsa->header->orig_time) == 0 ) |
| 344 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 345 | if ( nlsr->debugging ) |
| 346 | printf("Duplicate Adj LSA. Discarded... \n"); |
| 347 | if ( nlsr->detailed_logging ) |
| 348 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Duplicate Adj LSA. Discarded...\n"); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 349 | } |
| 350 | else |
| 351 | { |
| 352 | if ( name_lsa->header->isValid == 0 ) |
| 353 | { |
| 354 | // have to call to delete npt table entry |
akmhoque | 3cced64 | 2012-09-24 16:20:20 -0500 | [diff] [blame] | 355 | delete_npt_entry_by_router_and_name_prefix(new_name_lsa->header->orig_router->name,new_name_lsa->name_prefix->name); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 356 | |
| 357 | if ( strcmp(name_lsa->header->orig_router->name,nlsr->router_name)!= 0) |
| 358 | { |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 359 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Name-LSA\n"); |
| 360 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Deleting name lsa\n"); |
| 361 | write_log_for_name_lsa(new_name_lsa); |
| 362 | writeLogg(__FILE__,__FUNCTION__,__LINE__," name_lsa_end\n"); |
| 363 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 364 | hashtb_delete(e); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 365 | if ( nlsr->debugging ) |
| 366 | printf("isValid bit not set for Router %s so LSA Deleted from LSDB\n",name_lsa->header->orig_router->name); |
| 367 | if ( nlsr->detailed_logging ) |
| 368 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"isValid bit not set for Router %s so LSA Deleted from LSDB\n",name_lsa->header->orig_router->name); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 369 | } |
| 370 | else |
| 371 | { |
| 372 | new_name_lsa->header->isValid=name_lsa->header->isValid; |
| 373 | free(new_name_lsa->header->orig_time); |
| 374 | new_name_lsa->header->orig_time=(char *)malloc(strlen(name_lsa->header->orig_time)+1); |
| 375 | memset(new_name_lsa->header->orig_time,0,strlen(name_lsa->header->orig_time)+1); |
| 376 | memcpy(new_name_lsa->header->orig_time,name_lsa->header->orig_time,strlen(name_lsa->header->orig_time)+1); |
| 377 | } |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 378 | if ( nlsr->debugging ) |
| 379 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 380 | if ( nlsr->detailed_logging ) |
| 381 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 382 | set_new_lsdb_version(); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 383 | if ( nlsr->debugging ) |
| 384 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 385 | if ( nlsr->detailed_logging ) |
| 386 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 387 | } |
| 388 | else |
| 389 | { |
| 390 | int is_npt_update=0; |
| 391 | if ( strcmp(new_name_lsa->name_prefix->name,name_lsa->name_prefix->name) != 0 ) |
| 392 | { |
| 393 | is_npt_update=1; |
akmhoque | 3cced64 | 2012-09-24 16:20:20 -0500 | [diff] [blame] | 394 | delete_npt_entry_by_router_and_name_prefix(new_name_lsa->header->orig_router->name,new_name_lsa->name_prefix->name); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | // copying LSA content with header |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 398 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Name-LSA\n"); |
| 399 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Deleting name lsa\n"); |
| 400 | write_log_for_name_lsa(new_name_lsa); |
| 401 | writeLogg(__FILE__,__FUNCTION__,__LINE__," name_lsa_end\n"); |
| 402 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 403 | |
| 404 | free(new_name_lsa->header->orig_time); |
| 405 | new_name_lsa->header->orig_time=(char *)malloc(strlen(name_lsa->header->orig_time)+1); |
| 406 | memset(new_name_lsa->header->orig_time,0,strlen(name_lsa->header->orig_time)+1); |
| 407 | memcpy(new_name_lsa->header->orig_time,name_lsa->header->orig_time,strlen(name_lsa->header->orig_time)+1); |
| 408 | |
| 409 | new_name_lsa->header->isValid=name_lsa->header->isValid; |
| 410 | |
| 411 | free(new_name_lsa->name_prefix->name); |
| 412 | free(new_name_lsa->name_prefix); |
| 413 | new_name_lsa->name_prefix=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 414 | new_name_lsa->name_prefix->name=(char *)malloc(name_lsa->name_prefix->length); |
| 415 | memcpy(new_name_lsa->name_prefix->name,name_lsa->name_prefix->name,name_lsa->name_prefix->length); |
| 416 | new_name_lsa->name_prefix->length=name_lsa->name_prefix->length; |
| 417 | |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 418 | |
| 419 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Name-LSA\n"); |
| 420 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adding name lsa\n"); |
| 421 | write_log_for_name_lsa(new_name_lsa); |
| 422 | writeLogg(__FILE__,__FUNCTION__,__LINE__," name_lsa_end\n"); |
| 423 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 424 | if ( nlsr->debugging ) |
| 425 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 426 | if ( nlsr->detailed_logging ) |
| 427 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 428 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 429 | set_new_lsdb_version(); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 430 | |
| 431 | if ( nlsr->debugging ) |
| 432 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 433 | if ( nlsr->detailed_logging ) |
| 434 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 435 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 436 | |
| 437 | if( is_npt_update == 1 ) |
| 438 | { |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 439 | //struct hashtb *face_list; |
| 440 | int num_next_hop=get_number_of_next_hop(new_name_lsa->header->orig_router->name); |
| 441 | if ( num_next_hop < 0 ) |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 442 | { |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 443 | |
| 444 | int check=add_npt_entry(new_name_lsa->header->orig_router->name,new_name_lsa->name_prefix->name,NO_NEXT_HOP,NULL,NULL); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 445 | if ( check == HT_NEW_ENTRY ) |
| 446 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 447 | if ( nlsr->debugging ) |
| 448 | printf("Added in npt \n"); |
| 449 | if ( nlsr->detailed_logging ) |
| 450 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Added in npt \n"); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 451 | } |
| 452 | } |
| 453 | else |
| 454 | { |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 455 | int *faces=malloc(num_next_hop*sizeof(int)); |
| 456 | int *route_costs=malloc(num_next_hop*sizeof(int)); |
| 457 | int next_hop=get_next_hop(new_name_lsa->header->orig_router->name,faces,route_costs); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 458 | |
| 459 | if ( nlsr->debugging ) |
| 460 | { |
| 461 | printf("Printing from install_name_lsa \n"); |
| 462 | int j; |
| 463 | for(j=0;j<num_next_hop;j++) |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 464 | printf("Face: %d Route Cost: %d \n",faces[j],route_costs[j]); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 465 | } |
| 466 | if ( nlsr->detailed_logging ) |
| 467 | { |
| 468 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Printing from install_name_lsa \n"); |
| 469 | int j; |
| 470 | for(j=0;j<num_next_hop;j++) |
| 471 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Face: %d Route Cost: %d \n",faces[j],route_costs[j]); |
| 472 | } |
| 473 | |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 474 | |
| 475 | int check=add_npt_entry(new_name_lsa->header->orig_router->name,new_name_lsa->name_prefix->name,next_hop,faces,route_costs); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 476 | if ( check == HT_NEW_ENTRY ) |
| 477 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 478 | if ( nlsr->debugging ) |
| 479 | printf("Added in npt \n"); |
| 480 | if ( nlsr->detailed_logging ) |
| 481 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Added in npt \n"); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 482 | } |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 483 | free(faces); |
| 484 | free(route_costs); |
| 485 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 486 | } |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 487 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 488 | } |
| 489 | } |
| 490 | } |
| 491 | |
akmhoque | 3560cb6 | 2012-09-09 10:52:30 -0500 | [diff] [blame] | 492 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 493 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 494 | hashtb_end(e); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 495 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 496 | free(key); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 497 | } |
| 498 | |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 499 | void |
| 500 | write_log_for_name_lsa(struct nlsa *name_lsa) |
| 501 | { |
| 502 | |
| 503 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"-----------Name LSA Content---------------\n"); |
| 504 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Origination Router: %s\n",name_lsa->header->orig_router->name); |
| 505 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Origination Router Length: %d\n",name_lsa->header->orig_router->length); |
akmhoque | 34b99f9 | 2012-09-27 12:24:27 -0500 | [diff] [blame] | 506 | writeLogg(__FILE__,__FUNCTION__,__LINE__," LS Type: %d\n",name_lsa->header->ls_type); |
| 507 | writeLogg(__FILE__,__FUNCTION__,__LINE__," LS Id: %ld\n",name_lsa->header->ls_id); |
| 508 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Origination Time: %s\n",name_lsa->header->orig_time); |
| 509 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Is Valid: %d\n",name_lsa->header->isValid); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 510 | writeLogg(__FILE__,__FUNCTION__,__LINE__," LSA Data \n"); |
| 511 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Name Prefix: %s\n",name_lsa->name_prefix->name); |
| 512 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Name Prefix Length: %d\n",name_lsa->name_prefix->length); |
| 513 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"\n"); |
| 514 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 515 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 516 | void |
| 517 | print_name_lsa(struct nlsa *name_lsa) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 518 | { |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 519 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 520 | if ( nlsr->debugging ) |
| 521 | { |
| 522 | printf("-----------Name LSA Content---------------\n"); |
| 523 | printf(" Origination Router : %s\n",name_lsa->header->orig_router->name); |
| 524 | printf(" Origination Router Length: %d\n",name_lsa->header->orig_router->length); |
| 525 | printf(" LS Type : %d\n",name_lsa->header->ls_type); |
| 526 | printf(" LS Id : %ld\n",name_lsa->header->ls_id); |
| 527 | printf(" Origination Time : %s\n",name_lsa->header->orig_time); |
| 528 | printf(" Is Valid : %d\n",name_lsa->header->isValid); |
| 529 | printf(" LSA Data \n"); |
| 530 | printf(" Name Prefix: : %s\n",name_lsa->name_prefix->name); |
| 531 | printf(" Name Prefix Length : %d\n",name_lsa->name_prefix->length); |
| 532 | |
| 533 | printf("\n"); |
| 534 | } |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | void |
| 538 | print_name_lsdb(void) |
| 539 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 540 | if ( nlsr->debugging ) |
| 541 | printf("print_name_lsdb called \n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 542 | int i, name_lsdb_element; |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 543 | struct nlsa *name_lsa; |
| 544 | |
| 545 | struct hashtb_enumerator ee; |
| 546 | struct hashtb_enumerator *e = ⅇ |
| 547 | |
| 548 | hashtb_start(nlsr->lsdb->name_lsdb, e); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 549 | name_lsdb_element=hashtb_n(nlsr->lsdb->name_lsdb); |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 550 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 551 | for(i=0;i<name_lsdb_element;i++) |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 552 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 553 | if ( nlsr->debugging ) |
| 554 | printf("-----------Name LSA (%d)---------------\n",i+1); |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 555 | name_lsa=e->data; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 556 | print_name_lsa(name_lsa); |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 557 | hashtb_next(e); |
| 558 | } |
| 559 | |
| 560 | hashtb_end(e); |
| 561 | |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 562 | if ( nlsr->debugging ) |
| 563 | printf("\n"); |
| 564 | if ( nlsr->detailed_logging ) |
| 565 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"\n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 566 | } |
| 567 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 568 | |
| 569 | void |
| 570 | build_and_install_others_name_lsa(char *orig_router,int ls_type,long int ls_id,char *orig_time, int isValid,char *np) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 571 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 572 | if ( nlsr->debugging ) |
| 573 | printf("build_and_install_others_name_lsa called \n"); |
| 574 | if ( nlsr->detailed_logging ) |
| 575 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"build_and_install_others_name_lsa called \n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 576 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 577 | struct nlsa *name_lsa=(struct nlsa *)malloc(sizeof( struct nlsa )); |
| 578 | build_others_name_lsa(name_lsa,orig_router,ls_type,ls_id,orig_time, isValid,np); |
| 579 | print_name_lsa(name_lsa); |
| 580 | install_name_lsa(name_lsa); |
| 581 | print_name_lsdb(); |
akmhoque | de61ba9 | 2012-09-20 22:19:12 -0500 | [diff] [blame] | 582 | print_npt(); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 583 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 584 | free(name_lsa->header->orig_router->name); |
| 585 | free(name_lsa->header->orig_router); |
| 586 | free(name_lsa->header); |
| 587 | free(name_lsa->name_prefix->name); |
| 588 | free(name_lsa->name_prefix); |
| 589 | free(name_lsa); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 590 | |
| 591 | } |
| 592 | |
| 593 | void |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 594 | build_others_name_lsa(struct nlsa *name_lsa, char *orig_router,int ls_type,long int ls_id,char *orig_time, int isValid,char *np) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 595 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 596 | if ( nlsr->debugging ) |
| 597 | printf("build_others_name_lsa called\n"); |
| 598 | if ( nlsr->detailed_logging ) |
| 599 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"build_others_name_lsa called \n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 600 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 601 | name_lsa->header=(struct nlsa_header *)malloc(sizeof(struct nlsa_header )); |
| 602 | name_lsa->header->ls_type=LS_TYPE_NAME; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 603 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 604 | name_lsa->header->orig_time=(char *)malloc(strlen(orig_time)+1); |
| 605 | memset(name_lsa->header->orig_time,0,strlen(orig_time)+1); |
| 606 | memcpy(name_lsa->header->orig_time,orig_time,strlen(orig_time)+1); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 607 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 608 | name_lsa->header->ls_id=ls_id; |
| 609 | name_lsa->header->orig_router=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 610 | name_lsa->header->orig_router->name=(char *)malloc(strlen(orig_router)+1); |
| 611 | memset(name_lsa->header->orig_router->name,0,strlen(orig_router)+1); |
| 612 | memcpy(name_lsa->header->orig_router->name,orig_router,strlen(orig_router)+1); |
| 613 | name_lsa->header->orig_router->length=strlen(orig_router)+1; |
| 614 | name_lsa->header->isValid=isValid; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 615 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 616 | name_lsa->name_prefix=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 617 | name_lsa->name_prefix->name=(char *)malloc(strlen(np)+1); |
| 618 | memset(name_lsa->name_prefix->name,0,strlen(np)+1); |
| 619 | memcpy(name_lsa->name_prefix->name,np,strlen(np)+1); |
| 620 | name_lsa->name_prefix->length=strlen(np)+1; |
akmhoque | f71d908 | 2012-08-22 12:51:53 -0400 | [diff] [blame] | 621 | } |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 622 | |
| 623 | |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 624 | void |
| 625 | make_cor_lsa_key(char *key,struct clsa *cor_lsa) |
| 626 | { |
| 627 | memcpy(key+strlen(key),cor_lsa->header->orig_router->name,cor_lsa->header->orig_router->length); |
| 628 | memcpy(key+strlen(key),"/",1); |
| 629 | char ls_type[2]; |
| 630 | sprintf(ls_type,"%d",cor_lsa->header->ls_type); |
| 631 | memcpy(key+strlen(key),ls_type,strlen(ls_type)); |
| 632 | key[strlen(key)]='\0'; |
| 633 | } |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 634 | |
| 635 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 636 | void |
| 637 | make_adj_lsa_key(char *key,struct alsa *adj_lsa) |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 638 | { |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 639 | memcpy(key+strlen(key),adj_lsa->header->orig_router->name,adj_lsa->header->orig_router->length); |
| 640 | memcpy(key+strlen(key),"/",1); |
| 641 | char ls_type[2]; |
| 642 | sprintf(ls_type,"%d",adj_lsa->header->ls_type); |
| 643 | memcpy(key+strlen(key),ls_type,strlen(ls_type)); |
| 644 | key[strlen(key)]='\0'; |
| 645 | } |
| 646 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 647 | int |
| 648 | build_and_install_adj_lsa(struct ccn_schedule *sched, void *clienth, struct ccn_scheduled_event *ev, int flags) |
| 649 | { |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 650 | if(flags == CCN_SCHEDULE_CANCEL) |
| 651 | { |
| 652 | return -1; |
| 653 | } |
| 654 | |
| 655 | nlsr_lock(); |
| 656 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 657 | if ( nlsr->debugging ) |
| 658 | printf("build_and_install_adj_lsa called \n"); |
| 659 | if ( nlsr->detailed_logging ) |
| 660 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"build_and_install_adj_lsa called \n"); |
| 661 | |
| 662 | if ( nlsr->debugging ) |
| 663 | printf("adj_build_flag = %d \n",nlsr->adj_build_flag); |
| 664 | if ( nlsr->detailed_logging ) |
| 665 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"adj_build_flag = %d \n",nlsr->adj_build_flag); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 666 | |
| 667 | if(nlsr->adj_build_flag > 0) |
| 668 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 669 | if ( nlsr->debugging ) |
| 670 | printf("is_adj_lsa_build = %d \n",is_adj_lsa_build()); |
| 671 | if ( nlsr->detailed_logging ) |
| 672 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"is_adj_lsa_build = %d \n",is_adj_lsa_build()); |
| 673 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 674 | if ( is_adj_lsa_build()> 0) |
| 675 | { |
| 676 | struct alsa *adj_lsa=(struct alsa *)malloc(sizeof( struct alsa )); |
| 677 | build_adj_lsa(adj_lsa); |
| 678 | install_adj_lsa(adj_lsa); |
| 679 | |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 680 | char lst[2]; |
| 681 | memset(lst,0,2); |
| 682 | sprintf(lst,"%d",LS_TYPE_ADJ); |
| 683 | |
| 684 | char *repo_key=(char *)malloc(strlen(nlsr->slice_prefix)+strlen(adj_lsa->header->orig_time)+strlen(adj_lsa->header->orig_router->name) + strlen(lst) + 5+15); |
| 685 | memset(repo_key, 0, strlen(nlsr->slice_prefix)+strlen(adj_lsa->header->orig_time)+strlen(adj_lsa->header->orig_router->name) + strlen(lst) + 5+15); |
| 686 | make_adj_lsa_prefix_for_repo(repo_key, adj_lsa->header->orig_router->name,LS_TYPE_ADJ,adj_lsa->header->orig_time,nlsr->slice_prefix); |
| 687 | |
| 688 | if ( nlsr->debugging ) |
| 689 | printf("Adj LSA Repo Key: %s \n",repo_key); |
| 690 | |
| 691 | char *key=(char *)malloc(adj_lsa->header->orig_router->length+2+2); |
| 692 | memset(key,0,adj_lsa->header->orig_router->length+2+2); |
| 693 | make_adj_lsa_key(key,adj_lsa); |
| 694 | if ( nlsr->debugging ) |
| 695 | printf("Adj LSA: %s \n",key); |
| 696 | |
| 697 | struct name_prefix *lsaid=(struct name_prefix *)malloc(sizeof(struct name_prefix)); |
| 698 | lsaid->name=(char *)malloc(strlen(key)+1); |
| 699 | memset(lsaid->name, 0, strlen(key)+1); |
| 700 | memcpy(lsaid->name,key,strlen(key)); |
| 701 | lsaid->length=strlen(key)+1; |
| 702 | |
| 703 | |
| 704 | write_adj_lsa_to_repo(repo_key, lsaid); |
| 705 | |
| 706 | free(key); |
| 707 | free(repo_key); |
| 708 | free(lsaid->name); |
| 709 | free(lsaid); |
| 710 | |
| 711 | |
| 712 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 713 | free(adj_lsa->header->orig_router->name); |
| 714 | free(adj_lsa->header->orig_router); |
| 715 | free(adj_lsa->header->orig_time); |
| 716 | free(adj_lsa->header); |
| 717 | free(adj_lsa->body); |
| 718 | free(adj_lsa); |
| 719 | nlsr->adj_build_flag=0; |
| 720 | print_adj_lsdb(); |
| 721 | } |
| 722 | else |
| 723 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 724 | if ( nlsr->debugging ) |
| 725 | printf("Can not build adj LSA now\n"); |
| 726 | if ( nlsr->detailed_logging ) |
| 727 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Can not build adj LSA now\n"); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 728 | } |
| 729 | } |
| 730 | nlsr->is_build_adj_lsa_sheduled=0; |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 731 | |
| 732 | nlsr_unlock(); |
| 733 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 734 | return 0; |
| 735 | } |
| 736 | |
| 737 | |
| 738 | void |
| 739 | build_adj_lsa(struct alsa * adj_lsa) |
| 740 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 741 | if ( nlsr->debugging ) |
| 742 | printf("build_adj_lsa called \n"); |
| 743 | if ( nlsr->detailed_logging ) |
| 744 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"build_adj_lsa called \n"); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 745 | |
| 746 | int no_link=no_active_nbr(); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 747 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 748 | adj_lsa->header=(struct alsa_header *)malloc(sizeof(struct alsa_header )); |
| 749 | adj_lsa->header->orig_router=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 750 | adj_lsa->header->orig_router->name=(char *)malloc(strlen(nlsr->router_name)+1); |
| 751 | memset(adj_lsa->header->orig_router->name,0,strlen(nlsr->router_name)+1); |
| 752 | memcpy(adj_lsa->header->orig_router->name,nlsr->router_name,strlen(nlsr->router_name)+1); |
| 753 | adj_lsa->header->orig_router->length=strlen(nlsr->router_name)+1; |
| 754 | |
| 755 | adj_lsa->header->ls_type=(unsigned)LS_TYPE_ADJ; |
| 756 | |
| 757 | char *time_stamp=(char *)malloc(20); |
| 758 | memset(time_stamp,0,20); |
| 759 | get_current_timestamp_micro(time_stamp); |
| 760 | |
| 761 | adj_lsa->header->orig_time=(char *)malloc(strlen(time_stamp)+1); |
| 762 | memset(adj_lsa->header->orig_time,0,strlen(time_stamp)+1); |
| 763 | memcpy(adj_lsa->header->orig_time,time_stamp,strlen(time_stamp)+1); |
| 764 | free(time_stamp); |
| 765 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 766 | adj_lsa->no_link=no_link; |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 767 | |
| 768 | |
| 769 | struct ccn_charbuf *c=ccn_charbuf_create(); |
| 770 | get_active_nbr_adj_data(c); |
| 771 | char *data=ccn_charbuf_as_string(c); |
| 772 | |
| 773 | adj_lsa->body=(char *)malloc(strlen(data)+1); |
| 774 | memset(adj_lsa->body,0,strlen(data)+1); |
| 775 | memcpy(adj_lsa->body,(char *)data,strlen(data)+1); |
| 776 | ccn_charbuf_destroy(&c); |
| 777 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 778 | nlsr->adj_build_count++; |
| 779 | |
| 780 | |
| 781 | } |
| 782 | |
| 783 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 784 | void |
| 785 | install_adj_lsa(struct alsa * adj_lsa) |
| 786 | { |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 787 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 788 | if ( nlsr->debugging ) |
| 789 | printf("install_adj_lsa called \n"); |
| 790 | if ( nlsr->detailed_logging ) |
| 791 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"install_adj_lsa called \n"); |
| 792 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 793 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 794 | char *time_stamp=(char *)malloc(20); |
| 795 | memset(time_stamp,0,20); |
| 796 | get_current_timestamp_micro(time_stamp); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 797 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 798 | |
| 799 | char *key=(char *)malloc(adj_lsa->header->orig_router->length+2+2); |
| 800 | memset(key,0,adj_lsa->header->orig_router->length+2); |
| 801 | make_adj_lsa_key(key,adj_lsa); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 802 | |
| 803 | struct alsa *new_adj_lsa=(struct alsa*)malloc(sizeof(struct alsa )); |
| 804 | |
| 805 | struct hashtb_enumerator ee; |
| 806 | struct hashtb_enumerator *e = ⅇ |
| 807 | int res; |
| 808 | |
| 809 | hashtb_start(nlsr->lsdb->adj_lsdb, e); |
| 810 | res = hashtb_seek(e, key, strlen(key), 0); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 811 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 812 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 813 | |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 814 | if(res == HT_NEW_ENTRY) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 815 | { |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 816 | if ( adj_lsa->no_link > 0) |
| 817 | { |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 818 | if ( nlsr->debugging ) |
| 819 | printf("New ADJ LSA... Adding to LSDB\n"); |
| 820 | if ( nlsr->detailed_logging ) |
| 821 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New ADJ LSA... Adding to LSDB\n"); |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 822 | new_adj_lsa = e->data; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 823 | |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 824 | new_adj_lsa->header=(struct alsa_header *)malloc(sizeof(struct alsa_header )); |
| 825 | new_adj_lsa->header->ls_type=adj_lsa->header->ls_type; |
| 826 | new_adj_lsa->header->orig_time=(char *)malloc(strlen(adj_lsa->header->orig_time)+1); |
| 827 | memcpy(new_adj_lsa->header->orig_time,adj_lsa->header->orig_time,strlen(adj_lsa->header->orig_time)+1); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 828 | |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 829 | new_adj_lsa->header->orig_router=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 830 | new_adj_lsa->header->orig_router->name=(char *)malloc(adj_lsa->header->orig_router->length); |
| 831 | memcpy(new_adj_lsa->header->orig_router->name,adj_lsa->header->orig_router->name,adj_lsa->header->orig_router->length); |
| 832 | new_adj_lsa->header->orig_router->length=adj_lsa->header->orig_router->length; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 833 | |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 834 | new_adj_lsa->no_link=adj_lsa->no_link; |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 835 | |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 836 | new_adj_lsa->body=(char *)malloc(strlen(adj_lsa->body)+1); |
| 837 | memset(new_adj_lsa->body,0,strlen(adj_lsa->body)+1); |
| 838 | memcpy(new_adj_lsa->body,adj_lsa->body,strlen(adj_lsa->body)+1); |
| 839 | |
| 840 | add_next_hop_router(new_adj_lsa->header->orig_router->name); |
| 841 | add_next_hop_from_lsa_adj_body(new_adj_lsa->body,new_adj_lsa->no_link); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 842 | |
| 843 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adj-LSA\n"); |
| 844 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adding adj lsa\n"); |
| 845 | write_log_for_adj_lsa(new_adj_lsa); |
| 846 | writeLogg(__FILE__,__FUNCTION__,__LINE__," adj_lsa_end\n"); |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 847 | } |
| 848 | else |
| 849 | { |
| 850 | hashtb_delete(e); |
| 851 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 852 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 853 | if ( nlsr->debugging ) |
| 854 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 855 | if ( nlsr->detailed_logging ) |
| 856 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 857 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 858 | set_new_lsdb_version(); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 859 | |
| 860 | if ( nlsr->debugging ) |
| 861 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 862 | if ( nlsr->detailed_logging ) |
| 863 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 864 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 865 | } |
| 866 | else if(res == HT_OLD_ENTRY) |
| 867 | { |
| 868 | new_adj_lsa = e->data; |
| 869 | if(strcmp(adj_lsa->header->orig_time,new_adj_lsa->header->orig_time)<=0) |
| 870 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 871 | if ( nlsr->debugging ) |
| 872 | printf("Older/Duplicate Adj LSA. Discarded...\n"); |
| 873 | if ( nlsr->detailed_logging ) |
| 874 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Older/Duplicate Adj LSA. Discarded...\n"); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 875 | } |
| 876 | else |
| 877 | { |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 878 | |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 879 | if ( adj_lsa->no_link > 0) |
| 880 | { |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 881 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adj-LSA\n"); |
| 882 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Deleting adj lsa\n"); |
| 883 | write_log_for_adj_lsa(new_adj_lsa); |
| 884 | writeLogg(__FILE__,__FUNCTION__,__LINE__," adj_lsa_end\n"); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 885 | |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 886 | free(new_adj_lsa->header->orig_time); |
| 887 | new_adj_lsa->header->orig_time=(char *)malloc(strlen(adj_lsa->header->orig_time)+1); |
| 888 | memcpy(new_adj_lsa->header->orig_time,adj_lsa->header->orig_time,strlen(adj_lsa->header->orig_time)+1); |
| 889 | |
| 890 | new_adj_lsa->no_link=adj_lsa->no_link; |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 891 | |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 892 | new_adj_lsa->body=(char *)malloc(strlen(adj_lsa->body)+1); |
| 893 | memset(new_adj_lsa->body,0,strlen(adj_lsa->body)+1); |
| 894 | memcpy(new_adj_lsa->body,adj_lsa->body,strlen(adj_lsa->body)+1); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 895 | |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 896 | add_next_hop_from_lsa_adj_body(new_adj_lsa->body,new_adj_lsa->no_link); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 897 | |
| 898 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adj-LSA\n"); |
| 899 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adding adj lsa\n"); |
| 900 | write_log_for_adj_lsa(new_adj_lsa); |
| 901 | writeLogg(__FILE__,__FUNCTION__,__LINE__," adj_lsa_end\n"); |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 902 | } |
| 903 | else |
| 904 | { |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 905 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adj-LSA\n"); |
| 906 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Deleting adj lsa\n"); |
| 907 | write_log_for_adj_lsa(new_adj_lsa); |
| 908 | writeLogg(__FILE__,__FUNCTION__,__LINE__," adj_lsa_end\n"); |
| 909 | |
akmhoque | 62c0c19 | 2012-09-24 07:49:25 -0500 | [diff] [blame] | 910 | hashtb_delete(e); |
| 911 | } |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 912 | |
| 913 | if ( nlsr->debugging ) |
| 914 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 915 | if ( nlsr->detailed_logging ) |
| 916 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 917 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 918 | set_new_lsdb_version(); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 919 | |
| 920 | if ( nlsr->debugging ) |
| 921 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 922 | if ( nlsr->detailed_logging ) |
| 923 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 924 | } |
| 925 | |
| 926 | } |
| 927 | hashtb_end(e); |
| 928 | |
| 929 | if ( !nlsr->is_route_calculation_scheduled ) |
| 930 | { |
| 931 | nlsr->event_calculate_route = ccn_schedule_event(nlsr->sched, 1000000, &route_calculate, NULL, 0); |
| 932 | nlsr->is_route_calculation_scheduled=1; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 933 | } |
| 934 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 935 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 936 | free(key); |
| 937 | |
| 938 | free(time_stamp); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 939 | } |
| 940 | |
| 941 | void |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 942 | write_log_for_adj_lsa_body(const char *body, int no_link) |
| 943 | { |
| 944 | int i=0; |
| 945 | char *lsa_data=(char *)malloc(strlen(body)+1); |
| 946 | memset( lsa_data,0,strlen(body)+1); |
| 947 | memcpy(lsa_data,body,strlen(body)+1); |
| 948 | char *sep="|"; |
| 949 | char *rem; |
| 950 | char *rtr_id; |
| 951 | char *length; |
| 952 | char *face; |
| 953 | char *metric; |
| 954 | |
| 955 | if(no_link >0 ) |
| 956 | { |
| 957 | rtr_id=strtok_r(lsa_data,sep,&rem); |
| 958 | length=strtok_r(NULL,sep,&rem); |
| 959 | face=strtok_r(NULL,sep,&rem); |
| 960 | metric=strtok_r(NULL,sep,&rem); |
| 961 | |
| 962 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Link %d \n",i+1); |
akmhoque | 34b99f9 | 2012-09-27 12:24:27 -0500 | [diff] [blame] | 963 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adjacent Router: %s \n",rtr_id); |
| 964 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adjacent Router Length: %s \n",length); |
| 965 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Connecting Face: %s \n",face); |
| 966 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Metric: %s \n",metric); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 967 | |
| 968 | |
| 969 | for(i=1;i<no_link;i++) |
| 970 | { |
| 971 | rtr_id=strtok_r(NULL,sep,&rem); |
| 972 | length=strtok_r(NULL,sep,&rem); |
| 973 | face=strtok_r(NULL,sep,&rem); |
| 974 | metric=strtok_r(NULL,sep,&rem); |
| 975 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Link %d \n",i+1); |
akmhoque | 34b99f9 | 2012-09-27 12:24:27 -0500 | [diff] [blame] | 976 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adjacent Router: %s \n",rtr_id); |
| 977 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adjacent Router Length: %s \n",length); |
| 978 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Connecting Face: %s \n",face); |
| 979 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Metric: %s \n",metric); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 980 | |
| 981 | } |
| 982 | } |
| 983 | |
| 984 | free(lsa_data); |
| 985 | } |
| 986 | |
| 987 | |
| 988 | void |
| 989 | write_log_for_adj_lsa(struct alsa * adj_lsa) |
| 990 | { |
| 991 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"-----------Adj LSA Content---------------\n"); |
akmhoque | 34b99f9 | 2012-09-27 12:24:27 -0500 | [diff] [blame] | 992 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Origination Router: %s\n",adj_lsa->header->orig_router->name); |
| 993 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Origination Router Length: %d\n",adj_lsa->header->orig_router->length); |
| 994 | writeLogg(__FILE__,__FUNCTION__,__LINE__," LS Type: %d\n",adj_lsa->header->ls_type); |
| 995 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Origination Time: %s\n",adj_lsa->header->orig_time); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 996 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Lsa Data:\n"); |
akmhoque | 34b99f9 | 2012-09-27 12:24:27 -0500 | [diff] [blame] | 997 | writeLogg(__FILE__,__FUNCTION__,__LINE__," No of Link: %d\n",adj_lsa->no_link); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 998 | |
| 999 | write_log_for_adj_lsa_body(adj_lsa->body,adj_lsa->no_link); |
| 1000 | |
| 1001 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"\n"); |
| 1002 | |
| 1003 | } |
| 1004 | |
| 1005 | void |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1006 | print_adj_lsa_body(const char *body, int no_link) |
| 1007 | { |
| 1008 | int i=0; |
| 1009 | char *lsa_data=(char *)malloc(strlen(body)+1); |
| 1010 | memset( lsa_data,0,strlen(body)+1); |
| 1011 | memcpy(lsa_data,body,strlen(body)+1); |
| 1012 | char *sep="|"; |
| 1013 | char *rem; |
| 1014 | char *rtr_id; |
| 1015 | char *length; |
| 1016 | char *face; |
| 1017 | char *metric; |
| 1018 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1019 | if(no_link >0 ) |
| 1020 | { |
| 1021 | rtr_id=strtok_r(lsa_data,sep,&rem); |
| 1022 | length=strtok_r(NULL,sep,&rem); |
| 1023 | face=strtok_r(NULL,sep,&rem); |
| 1024 | metric=strtok_r(NULL,sep,&rem); |
| 1025 | |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1026 | if ( nlsr->debugging ) { |
| 1027 | printf(" Link %d \n",i+1); |
| 1028 | printf(" Neighbor : %s \n",rtr_id); |
| 1029 | printf(" Neighbor Length : %s \n",length); |
| 1030 | printf(" Connecting Face : %s \n",face); |
| 1031 | printf(" Metric : %s \n",metric); |
| 1032 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1033 | |
| 1034 | for(i=1;i<no_link;i++) |
| 1035 | { |
| 1036 | rtr_id=strtok_r(NULL,sep,&rem); |
| 1037 | length=strtok_r(NULL,sep,&rem); |
| 1038 | face=strtok_r(NULL,sep,&rem); |
| 1039 | metric=strtok_r(NULL,sep,&rem); |
| 1040 | printf(" Link %d \n",i+1); |
| 1041 | printf(" Neighbor : %s \n",rtr_id); |
| 1042 | printf(" Neighbor Length : %s \n",length); |
| 1043 | printf(" Connecting Face : %s \n",face); |
| 1044 | printf(" Metric : %s \n",metric); |
| 1045 | |
| 1046 | } |
| 1047 | } |
| 1048 | |
| 1049 | free(lsa_data); |
| 1050 | } |
| 1051 | |
| 1052 | void |
| 1053 | print_adj_lsa(struct alsa * adj_lsa) |
| 1054 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1055 | if ( nlsr->debugging ) |
| 1056 | { |
| 1057 | printf("-----------ADJ LSA Content---------------\n"); |
| 1058 | printf(" Origination Router : %s\n",adj_lsa->header->orig_router->name); |
| 1059 | printf(" Origination Router Length: %d\n",adj_lsa->header->orig_router->length); |
| 1060 | printf(" LS Type : %d\n",adj_lsa->header->ls_type); |
| 1061 | printf(" Origination Time : %s\n",adj_lsa->header->orig_time); |
| 1062 | printf(" Lsa Data:\n"); |
| 1063 | printf(" No of Link : %d\n",adj_lsa->no_link); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1064 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1065 | print_adj_lsa_body(adj_lsa->body,adj_lsa->no_link); |
| 1066 | printf("\n"); |
| 1067 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1068 | |
| 1069 | } |
| 1070 | |
| 1071 | void |
| 1072 | print_adj_lsdb(void) |
| 1073 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1074 | if ( nlsr->debugging ) |
| 1075 | printf("print_name_lsdb called \n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1076 | int i, adj_lsdb_element; |
| 1077 | struct alsa *adj_lsa; |
| 1078 | |
| 1079 | struct hashtb_enumerator ee; |
| 1080 | struct hashtb_enumerator *e = ⅇ |
| 1081 | |
| 1082 | hashtb_start(nlsr->lsdb->adj_lsdb, e); |
| 1083 | adj_lsdb_element=hashtb_n(nlsr->lsdb->adj_lsdb); |
| 1084 | |
| 1085 | for(i=0;i<adj_lsdb_element;i++) |
| 1086 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1087 | if ( nlsr->debugging ) |
| 1088 | printf("-----------Adj LSA (%d)---------------\n",i+1); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1089 | adj_lsa=e->data; |
| 1090 | print_adj_lsa(adj_lsa); |
| 1091 | hashtb_next(e); |
| 1092 | } |
| 1093 | |
| 1094 | hashtb_end(e); |
| 1095 | |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 1096 | if ( nlsr->debugging ) |
| 1097 | printf("\n"); |
| 1098 | if ( nlsr->detailed_logging ) |
| 1099 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"\n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1100 | } |
| 1101 | |
| 1102 | void |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1103 | build_and_install_others_adj_lsa(char *orig_router,int ls_type,char *orig_time, int no_link,char *data) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1104 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1105 | if ( nlsr->debugging ) |
| 1106 | printf("build_and_install_others_adj_lsa called \n"); |
| 1107 | if ( nlsr->detailed_logging ) |
| 1108 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"build_and_install_others_adj_lsa called \n"); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1109 | struct alsa *adj_lsa=(struct alsa *)malloc(sizeof( struct alsa )); |
| 1110 | build_others_adj_lsa(adj_lsa,orig_router,ls_type,orig_time,no_link,data); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1111 | install_adj_lsa(adj_lsa); |
| 1112 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1113 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1114 | free(adj_lsa->header->orig_router->name); |
| 1115 | free(adj_lsa->header->orig_router); |
| 1116 | free(adj_lsa->header->orig_time); |
| 1117 | free(adj_lsa->header); |
| 1118 | free(adj_lsa->body); |
| 1119 | free(adj_lsa); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1120 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1121 | print_adj_lsdb(); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1122 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1123 | } |
| 1124 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1125 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1126 | void |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1127 | build_others_adj_lsa(struct alsa *adj_lsa,char *orig_router,int ls_type,char *orig_time,int no_link,char *data) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1128 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1129 | if ( nlsr->debugging ) |
| 1130 | printf("build_others_adj_lsa called \n"); |
| 1131 | if ( nlsr->detailed_logging ) |
| 1132 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"build_others_adj_lsa called \n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1133 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1134 | /*Filling Up Header Data */ |
| 1135 | adj_lsa->header=(struct alsa_header *)malloc(sizeof(struct alsa_header )); |
| 1136 | adj_lsa->header->orig_router=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 1137 | adj_lsa->header->orig_router->name=(char *)malloc(strlen(orig_router)+1); |
| 1138 | memset(adj_lsa->header->orig_router->name,0,strlen(orig_router)+1); |
| 1139 | memcpy(adj_lsa->header->orig_router->name,orig_router,strlen(orig_router)+1); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1140 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1141 | adj_lsa->header->orig_router->length=strlen(orig_router)+1; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1142 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1143 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1144 | adj_lsa->header->ls_type=(unsigned)LS_TYPE_ADJ; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1145 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1146 | adj_lsa->header->orig_time=(char *)malloc(strlen(orig_time)+1); |
| 1147 | memset(adj_lsa->header->orig_time,0,strlen(orig_time)+1); |
| 1148 | memcpy(adj_lsa->header->orig_time,orig_time,strlen(orig_time)+1); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1149 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1150 | adj_lsa->no_link=no_link; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1151 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1152 | adj_lsa->body=(char *)malloc(strlen(data)+1); |
| 1153 | memset(adj_lsa->body,0,strlen(data)+1); |
| 1154 | memcpy(adj_lsa->body,(char *)data,strlen(data)+1); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1155 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1156 | } |
| 1157 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1158 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 1159 | long int |
| 1160 | get_name_lsdb_num_element(void) |
| 1161 | { |
| 1162 | long int num_element; |
| 1163 | |
| 1164 | |
| 1165 | struct hashtb_enumerator ee; |
| 1166 | struct hashtb_enumerator *e = ⅇ |
| 1167 | |
| 1168 | hashtb_start(nlsr->lsdb->name_lsdb, e); |
| 1169 | num_element=hashtb_n(nlsr->lsdb->name_lsdb); |
| 1170 | hashtb_end(e); |
| 1171 | |
| 1172 | return num_element; |
| 1173 | } |
| 1174 | |
| 1175 | long int |
| 1176 | get_adj_lsdb_num_element(void) |
| 1177 | { |
| 1178 | long int num_element; |
| 1179 | |
| 1180 | |
| 1181 | struct hashtb_enumerator ee; |
| 1182 | struct hashtb_enumerator *e = ⅇ |
| 1183 | |
| 1184 | hashtb_start(nlsr->lsdb->adj_lsdb, e); |
| 1185 | num_element=hashtb_n(nlsr->lsdb->adj_lsdb); |
| 1186 | hashtb_end(e); |
| 1187 | |
| 1188 | return num_element; |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 1189 | } |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1190 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1191 | |
| 1192 | int |
| 1193 | check_is_new_name_lsa(char *orig_router,char *lst,char *lsid,char *orig_time) |
| 1194 | { |
| 1195 | int ret=0; |
| 1196 | struct ccn_charbuf *key=ccn_charbuf_create(); |
| 1197 | ccn_charbuf_append_string(key,orig_router); |
| 1198 | ccn_charbuf_append_string(key,"/"); |
| 1199 | ccn_charbuf_append_string(key,lst); |
| 1200 | ccn_charbuf_append_string(key,"/"); |
| 1201 | ccn_charbuf_append_string(key,lsid); |
| 1202 | |
| 1203 | int res; |
| 1204 | struct nlsa *name_lsa; |
| 1205 | |
| 1206 | struct hashtb_enumerator ee; |
| 1207 | struct hashtb_enumerator *e = ⅇ |
| 1208 | |
| 1209 | hashtb_start(nlsr->lsdb->name_lsdb, e); |
| 1210 | res = hashtb_seek(e, ccn_charbuf_as_string(key), key->length, 0); |
| 1211 | |
| 1212 | if( res == HT_NEW_ENTRY ) |
| 1213 | { |
| 1214 | hashtb_delete(e); |
| 1215 | ret=1; |
| 1216 | |
| 1217 | } |
| 1218 | else if(res == HT_OLD_ENTRY) |
| 1219 | { |
| 1220 | name_lsa=e->data; |
| 1221 | if( strcmp ( orig_time , name_lsa->header->orig_time ) > 0 ) |
| 1222 | { |
| 1223 | ret=1; |
| 1224 | } |
| 1225 | } |
| 1226 | |
| 1227 | hashtb_end(e); |
| 1228 | |
| 1229 | ccn_charbuf_destroy(&key); |
| 1230 | |
| 1231 | return ret; |
| 1232 | } |
| 1233 | |
| 1234 | int |
| 1235 | check_is_new_adj_lsa(char *orig_router,char *lst,char *orig_time) |
| 1236 | { |
| 1237 | int ret=0; |
| 1238 | struct ccn_charbuf *key=ccn_charbuf_create(); |
| 1239 | ccn_charbuf_append_string(key,orig_router); |
| 1240 | ccn_charbuf_append_string(key,"/"); |
| 1241 | ccn_charbuf_append_string(key,lst); |
| 1242 | |
| 1243 | int res; |
| 1244 | struct alsa *adj_lsa; |
| 1245 | |
| 1246 | struct hashtb_enumerator ee; |
| 1247 | struct hashtb_enumerator *e = ⅇ |
| 1248 | |
| 1249 | hashtb_start(nlsr->lsdb->adj_lsdb, e); |
| 1250 | res = hashtb_seek(e, ccn_charbuf_as_string(key), key->length, 0); |
| 1251 | |
| 1252 | if( res == HT_NEW_ENTRY ) |
| 1253 | { |
| 1254 | hashtb_delete(e); |
| 1255 | ret=1; |
| 1256 | |
| 1257 | } |
| 1258 | else if(res == HT_OLD_ENTRY) |
| 1259 | { |
| 1260 | adj_lsa=e->data; |
| 1261 | if( strcmp ( orig_time , adj_lsa->header->orig_time ) > 0 ) |
| 1262 | { |
| 1263 | ret=1; |
| 1264 | } |
| 1265 | } |
| 1266 | |
| 1267 | hashtb_end(e); |
| 1268 | |
| 1269 | ccn_charbuf_destroy(&key); |
| 1270 | |
| 1271 | return ret; |
| 1272 | } |
| 1273 | |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1274 | int |
| 1275 | check_is_new_cor_lsa(char *orig_router,char *lst,char *orig_time) |
| 1276 | { |
| 1277 | int ret=0; |
| 1278 | struct ccn_charbuf *key=ccn_charbuf_create(); |
| 1279 | ccn_charbuf_append_string(key,orig_router); |
| 1280 | ccn_charbuf_append_string(key,"/"); |
| 1281 | ccn_charbuf_append_string(key,lst); |
| 1282 | |
| 1283 | int res; |
| 1284 | struct clsa *cor_lsa; |
| 1285 | |
| 1286 | struct hashtb_enumerator ee; |
| 1287 | struct hashtb_enumerator *e = ⅇ |
| 1288 | |
| 1289 | hashtb_start(nlsr->lsdb->cor_lsdb, e); |
| 1290 | res = hashtb_seek(e, ccn_charbuf_as_string(key), key->length, 0); |
| 1291 | |
| 1292 | if( res == HT_NEW_ENTRY ) |
| 1293 | { |
| 1294 | hashtb_delete(e); |
| 1295 | ret=1; |
| 1296 | |
| 1297 | } |
| 1298 | else if(res == HT_OLD_ENTRY) |
| 1299 | { |
| 1300 | cor_lsa=e->data; |
| 1301 | if( strcmp ( orig_time , cor_lsa->header->orig_time ) > 0 ) |
| 1302 | { |
| 1303 | ret=1; |
| 1304 | } |
| 1305 | } |
| 1306 | |
| 1307 | hashtb_end(e); |
| 1308 | |
| 1309 | ccn_charbuf_destroy(&key); |
| 1310 | |
| 1311 | return ret; |
| 1312 | } |
| 1313 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1314 | void |
| 1315 | get_name_lsa_data(struct ccn_charbuf *lsa_data, struct name_prefix *lsaId) |
| 1316 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1317 | if ( nlsr->debugging ) |
| 1318 | printf("get_name_lsa_data called \n"); |
| 1319 | if ( nlsr->detailed_logging ) |
| 1320 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"get_name_lsa_data called \n"); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1321 | |
| 1322 | struct nlsa *name_lsa=(struct nlsa*)malloc(sizeof(struct nlsa )); |
| 1323 | |
| 1324 | struct hashtb_enumerator ee; |
| 1325 | struct hashtb_enumerator *e = ⅇ |
| 1326 | int res; |
| 1327 | |
| 1328 | hashtb_start(nlsr->lsdb->name_lsdb, e); |
| 1329 | res = hashtb_seek(e, lsaId->name, lsaId->length-1, 0); |
| 1330 | |
| 1331 | if( res == HT_OLD_ENTRY ) |
| 1332 | { |
| 1333 | name_lsa=e->data; |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1334 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1335 | if ( nlsr->debugging ) |
| 1336 | printf("NAME LSA found \n"); |
| 1337 | if ( nlsr->detailed_logging ) |
| 1338 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Name LSA found \n"); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1339 | |
| 1340 | ccn_charbuf_append_string(lsa_data,name_lsa->header->orig_router->name); |
| 1341 | ccn_charbuf_append_string(lsa_data,"|"); |
| 1342 | |
| 1343 | char *temp_length=(char *)malloc(20); |
| 1344 | memset(temp_length,0,20); |
| 1345 | sprintf(temp_length,"%d",name_lsa->header->orig_router->length); |
| 1346 | ccn_charbuf_append_string(lsa_data,temp_length); |
| 1347 | free(temp_length); |
| 1348 | ccn_charbuf_append_string(lsa_data,"|"); |
| 1349 | |
| 1350 | char *temp_ltype=(char *)malloc(20); |
| 1351 | memset(temp_ltype,0,20); |
| 1352 | sprintf(temp_ltype,"%d",name_lsa->header->ls_type); |
| 1353 | ccn_charbuf_append_string(lsa_data,temp_ltype); |
| 1354 | free(temp_ltype); |
| 1355 | ccn_charbuf_append_string(lsa_data,"|"); |
| 1356 | |
| 1357 | char *temp_lsid=(char *)malloc(20); |
| 1358 | memset(temp_lsid,0,20); |
| 1359 | sprintf(temp_lsid,"%ld",name_lsa->header->ls_id); |
| 1360 | ccn_charbuf_append_string(lsa_data,temp_lsid); |
| 1361 | free(temp_lsid); |
| 1362 | ccn_charbuf_append_string(lsa_data,"|"); |
| 1363 | |
| 1364 | ccn_charbuf_append_string(lsa_data,name_lsa->header->orig_time); |
| 1365 | ccn_charbuf_append_string(lsa_data,"|"); |
| 1366 | |
| 1367 | char *temp_valid=(char *)malloc(20); |
| 1368 | memset(temp_valid,0,20); |
| 1369 | sprintf(temp_valid,"%d",name_lsa->header->isValid); |
| 1370 | ccn_charbuf_append_string(lsa_data,temp_valid); |
| 1371 | free(temp_valid); |
| 1372 | ccn_charbuf_append_string(lsa_data,"|"); |
| 1373 | |
| 1374 | ccn_charbuf_append_string(lsa_data,name_lsa->name_prefix->name); |
| 1375 | ccn_charbuf_append_string(lsa_data,"|"); |
| 1376 | |
| 1377 | char *temp_npl=(char *)malloc(20); |
| 1378 | memset(temp_npl,0,20); |
| 1379 | sprintf(temp_npl,"%d",name_lsa->name_prefix->length); |
| 1380 | ccn_charbuf_append_string(lsa_data,temp_npl); |
| 1381 | free(temp_npl); |
| 1382 | ccn_charbuf_append_string(lsa_data,"|"); |
| 1383 | |
| 1384 | } |
| 1385 | else if(res == HT_NEW_ENTRY) |
| 1386 | { |
| 1387 | hashtb_delete(e); |
| 1388 | } |
| 1389 | |
| 1390 | hashtb_end(e); |
| 1391 | } |
| 1392 | |
| 1393 | void |
| 1394 | get_adj_lsa_data(struct ccn_charbuf *lsa_data,struct name_prefix *lsaId) |
| 1395 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1396 | if ( nlsr->debugging ) |
| 1397 | printf("get_adj_lsa_data called \n"); |
| 1398 | if ( nlsr->detailed_logging ) |
| 1399 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"get_adj_lsa_data called \n"); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1400 | |
| 1401 | struct alsa *adj_lsa=(struct alsa*)malloc(sizeof(struct alsa )); |
| 1402 | |
| 1403 | struct hashtb_enumerator ee; |
| 1404 | struct hashtb_enumerator *e = ⅇ |
| 1405 | int res; |
| 1406 | |
| 1407 | hashtb_start(nlsr->lsdb->adj_lsdb, e); |
| 1408 | res = hashtb_seek(e, lsaId->name, lsaId->length-1, 0); |
| 1409 | |
| 1410 | if( res == HT_OLD_ENTRY ) |
| 1411 | { |
| 1412 | adj_lsa=e->data; |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1413 | |
| 1414 | if ( nlsr->debugging ) |
| 1415 | printf("Adj LSA found \n"); |
| 1416 | if ( nlsr->detailed_logging ) |
| 1417 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Adj LSA found \n"); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1418 | |
| 1419 | ccn_charbuf_append_string(lsa_data,adj_lsa->header->orig_router->name); |
| 1420 | ccn_charbuf_append_string(lsa_data,"|"); |
| 1421 | |
| 1422 | char *temp_length=(char *)malloc(20); |
| 1423 | memset(temp_length,0,20); |
| 1424 | sprintf(temp_length,"%d",adj_lsa->header->orig_router->length); |
| 1425 | ccn_charbuf_append_string(lsa_data,temp_length); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1426 | ccn_charbuf_append_string(lsa_data,"|"); |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1427 | free(temp_length); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1428 | |
| 1429 | char *temp_ltype=(char *)malloc(20); |
| 1430 | memset(temp_ltype,0,20); |
| 1431 | sprintf(temp_ltype,"%d",adj_lsa->header->ls_type); |
| 1432 | ccn_charbuf_append_string(lsa_data,temp_ltype); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1433 | ccn_charbuf_append_string(lsa_data,"|"); |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1434 | free(temp_ltype); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1435 | |
| 1436 | ccn_charbuf_append_string(lsa_data,adj_lsa->header->orig_time); |
| 1437 | ccn_charbuf_append_string(lsa_data,"|"); |
| 1438 | |
| 1439 | char *temp_nl=(char *)malloc(20); |
| 1440 | memset(temp_nl,0,20); |
| 1441 | sprintf(temp_nl,"%d",adj_lsa->no_link); |
| 1442 | ccn_charbuf_append_string(lsa_data,temp_nl); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1443 | ccn_charbuf_append_string(lsa_data,"|"); |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1444 | free(temp_nl); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 1445 | |
| 1446 | ccn_charbuf_append_string(lsa_data,adj_lsa->body); |
| 1447 | |
| 1448 | |
| 1449 | } |
| 1450 | else if(res == HT_NEW_ENTRY) |
| 1451 | { |
| 1452 | hashtb_delete(e); |
| 1453 | } |
| 1454 | |
| 1455 | hashtb_end(e); |
| 1456 | } |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1457 | |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 1458 | void |
| 1459 | make_name_lsa_invalid(struct name_prefix *np,int ls_type, long int ls_id) |
| 1460 | { |
| 1461 | |
| 1462 | if ( nlsr->debugging ) |
| 1463 | printf("make_name_lsa_invalid called \n"); |
| 1464 | if ( nlsr->detailed_logging ) |
| 1465 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"make_name_lsa_invalid called \n"); |
| 1466 | |
| 1467 | |
| 1468 | char lst[2]; |
| 1469 | memset(lst,0,2); |
| 1470 | sprintf(lst,"%d",ls_type); |
| 1471 | |
| 1472 | char lsid[10]; |
| 1473 | memset(lsid,0,10); |
| 1474 | sprintf(lsid,"%ld",ls_id); |
| 1475 | |
| 1476 | |
| 1477 | char *key=(char *)malloc(strlen(np->name)+1+strlen(lst)+1+strlen(lsid)+1); |
| 1478 | memset(key,0,strlen(np->name)+1+strlen(lst)+1+strlen(lsid)+1); |
| 1479 | |
| 1480 | |
| 1481 | make_name_lsa_key(key, np->name,ls_type,ls_id); |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1482 | |
| 1483 | if ( nlsr->debugging ) |
| 1484 | printf("Key:%s Length:%d\n",key,(int)strlen(key)); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 1485 | |
| 1486 | struct nlsa *nlsa; |
| 1487 | |
| 1488 | struct hashtb_enumerator ee; |
| 1489 | struct hashtb_enumerator *e = ⅇ |
| 1490 | |
| 1491 | int res; |
| 1492 | |
| 1493 | hashtb_start(nlsr->lsdb->name_lsdb, e); |
| 1494 | res = hashtb_seek(e, key,strlen(key) , 0); |
| 1495 | |
| 1496 | if( res == HT_OLD_ENTRY ) |
| 1497 | { |
| 1498 | nlsa=e->data; |
| 1499 | |
| 1500 | nlsa->header->isValid=0; |
| 1501 | |
| 1502 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Name-LSA\n"); |
| 1503 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Deleting name lsa\n"); |
| 1504 | write_log_for_name_lsa(nlsa); |
| 1505 | writeLogg(__FILE__,__FUNCTION__,__LINE__," name_lsa_end\n"); |
| 1506 | |
| 1507 | hashtb_delete(e); |
| 1508 | } |
| 1509 | else if( res == HT_NEW_ENTRY ) |
| 1510 | { |
| 1511 | hashtb_delete(e); |
| 1512 | } |
| 1513 | hashtb_end(e); |
| 1514 | |
| 1515 | if ( nlsr->debugging ) |
| 1516 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1517 | if ( nlsr->detailed_logging ) |
| 1518 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1519 | |
| 1520 | set_new_lsdb_version(); |
| 1521 | |
| 1522 | if ( nlsr->debugging ) |
| 1523 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1524 | if ( nlsr->detailed_logging ) |
| 1525 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1526 | |
| 1527 | } |
| 1528 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1529 | int |
| 1530 | delete_name_lsa(struct ccn_schedule *sched, void *clienth, struct ccn_scheduled_event *ev, int flags) |
| 1531 | { |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1532 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1533 | if ( nlsr->debugging ) |
| 1534 | printf("delete_name_lsa called \n"); |
| 1535 | if ( nlsr->detailed_logging ) |
| 1536 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"delete_name_lsa called \n"); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1537 | |
| 1538 | if(flags == CCN_SCHEDULE_CANCEL) |
| 1539 | { |
| 1540 | return -1; |
| 1541 | } |
| 1542 | |
| 1543 | |
| 1544 | |
| 1545 | nlsr_lock(); |
| 1546 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1547 | if ( nlsr->debugging ) |
| 1548 | printf("LSA Key: %s \n",(char *)ev->evdata); |
| 1549 | if ( nlsr->detailed_logging ) |
| 1550 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"LSA Key: %s \n",(char *)ev->evdata); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1551 | |
| 1552 | struct nlsa *nlsa; |
| 1553 | |
| 1554 | struct hashtb_enumerator ee; |
| 1555 | struct hashtb_enumerator *e = ⅇ |
| 1556 | |
| 1557 | int res; |
| 1558 | |
| 1559 | hashtb_start(nlsr->lsdb->name_lsdb, e); |
| 1560 | res = hashtb_seek(e, (char *)ev->evdata, strlen((char *)ev->evdata), 0); |
| 1561 | |
| 1562 | if( res == HT_OLD_ENTRY ) |
| 1563 | { |
| 1564 | nlsa=e->data; |
akmhoque | 3cced64 | 2012-09-24 16:20:20 -0500 | [diff] [blame] | 1565 | delete_npt_entry_by_router_and_name_prefix(nlsa->header->orig_router->name, nlsa->name_prefix->name); |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 1566 | |
| 1567 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Name-LSA\n"); |
| 1568 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Deleting name lsa\n"); |
| 1569 | write_log_for_name_lsa(nlsa); |
| 1570 | writeLogg(__FILE__,__FUNCTION__,__LINE__," name_lsa_end\n"); |
| 1571 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1572 | hashtb_delete(e); |
| 1573 | } |
akmhoque | 3cced64 | 2012-09-24 16:20:20 -0500 | [diff] [blame] | 1574 | else if( res == HT_NEW_ENTRY ) |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1575 | { |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1576 | hashtb_delete(e); |
| 1577 | } |
| 1578 | hashtb_end(e); |
| 1579 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1580 | if ( nlsr->debugging ) |
| 1581 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1582 | if ( nlsr->detailed_logging ) |
| 1583 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1584 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1585 | set_new_lsdb_version(); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1586 | |
| 1587 | if ( nlsr->debugging ) |
| 1588 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1589 | if ( nlsr->detailed_logging ) |
| 1590 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1591 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1592 | nlsr_unlock(); |
| 1593 | |
| 1594 | return 0; |
| 1595 | } |
| 1596 | |
| 1597 | int |
| 1598 | delete_adj_lsa(struct ccn_schedule *sched, void *clienth, struct ccn_scheduled_event *ev, int flags) |
| 1599 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1600 | if ( nlsr->debugging ) |
| 1601 | printf("delete_adj_lsa called \n"); |
| 1602 | if ( nlsr->detailed_logging ) |
| 1603 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"delete_adj_lsa called \n"); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1604 | |
| 1605 | if(flags == CCN_SCHEDULE_CANCEL) |
| 1606 | { |
| 1607 | return -1; |
| 1608 | } |
| 1609 | nlsr_lock(); |
| 1610 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1611 | if ( nlsr->debugging ) |
| 1612 | printf("LSA Key: %s \n",(char *)ev->evdata); |
| 1613 | if ( nlsr->detailed_logging ) |
| 1614 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"LSA Key: %s \n",(char *)ev->evdata); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1615 | |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 1616 | struct alsa *alsa; |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1617 | struct hashtb_enumerator ee; |
| 1618 | struct hashtb_enumerator *e = ⅇ |
| 1619 | int res; |
| 1620 | |
| 1621 | hashtb_start(nlsr->lsdb->adj_lsdb, e); |
| 1622 | res = hashtb_seek(e, (char *)ev->evdata, strlen((char *)ev->evdata), 0); |
| 1623 | |
| 1624 | if( res == HT_OLD_ENTRY ) |
| 1625 | { |
akmhoque | 9e9fc72 | 2012-09-26 14:03:25 -0500 | [diff] [blame] | 1626 | alsa=e->data; |
| 1627 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adj-LSA\n"); |
| 1628 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Deleting adj lsa\n"); |
| 1629 | write_log_for_adj_lsa(alsa); |
| 1630 | writeLogg(__FILE__,__FUNCTION__,__LINE__," adj_lsa_end\n"); |
| 1631 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1632 | hashtb_delete(e); |
| 1633 | } |
| 1634 | else if( res == HT_OLD_ENTRY ) |
| 1635 | { |
| 1636 | hashtb_delete(e); |
| 1637 | } |
| 1638 | hashtb_end(e); |
| 1639 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1640 | if ( nlsr->debugging ) |
| 1641 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1642 | if ( nlsr->detailed_logging ) |
| 1643 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1644 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1645 | set_new_lsdb_version(); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1646 | |
| 1647 | if ( nlsr->debugging ) |
| 1648 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1649 | if ( nlsr->detailed_logging ) |
| 1650 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1651 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1652 | |
| 1653 | if ( !nlsr->is_route_calculation_scheduled) |
| 1654 | { |
| 1655 | nlsr->event_calculate_route = ccn_schedule_event(nlsr->sched, 1000000, &route_calculate, NULL, 0); |
| 1656 | nlsr->is_route_calculation_scheduled=1; |
| 1657 | } |
| 1658 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1659 | nlsr_unlock(); |
| 1660 | |
| 1661 | return 0; |
| 1662 | } |
| 1663 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1664 | void |
| 1665 | refresh_name_lsdb(void) |
| 1666 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1667 | if ( nlsr->debugging ) |
| 1668 | printf("refresh_name_lsdb called \n"); |
| 1669 | if ( nlsr->detailed_logging ) |
| 1670 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"refresh_name_lsdb called \n"); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1671 | |
| 1672 | char *time_stamp=(char *)malloc(20); |
| 1673 | memset(time_stamp,0,20); |
| 1674 | get_current_timestamp_micro(time_stamp); |
| 1675 | |
| 1676 | long int lsa_life_time; |
| 1677 | |
| 1678 | int i, name_lsdb_element; |
| 1679 | struct nlsa *name_lsa; |
| 1680 | |
| 1681 | struct hashtb_enumerator ee; |
| 1682 | struct hashtb_enumerator *e = ⅇ |
| 1683 | |
| 1684 | hashtb_start(nlsr->lsdb->name_lsdb, e); |
| 1685 | name_lsdb_element=hashtb_n(nlsr->lsdb->name_lsdb); |
| 1686 | |
| 1687 | for(i=0;i<name_lsdb_element;i++) |
| 1688 | { |
| 1689 | name_lsa=e->data; |
| 1690 | |
| 1691 | lsa_life_time=get_time_diff(time_stamp,name_lsa->header->orig_time); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1692 | if ( nlsr->debugging ) |
| 1693 | printf("LSA Life Time: %ld \n",lsa_life_time); |
| 1694 | if ( nlsr->detailed_logging ) |
| 1695 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"LSA Life Time: %ld \n",lsa_life_time); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1696 | |
| 1697 | if ( strcmp(name_lsa->header->orig_router->name,nlsr->router_name) == 0) |
| 1698 | { |
| 1699 | if ( lsa_life_time > nlsr->lsa_refresh_time ) |
| 1700 | { |
akmhoque | 14b3f34 | 2012-09-14 10:39:02 -0500 | [diff] [blame] | 1701 | if ( name_lsa->header->isValid == NAME_LSA_VALID ) |
| 1702 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1703 | if ( nlsr->debugging ) |
| 1704 | printf("Own Name LSA need to be refrshed\n"); |
| 1705 | if ( nlsr->detailed_logging ) |
| 1706 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Own Name LSA need to be refrshed\n"); |
akmhoque | a98c214 | 2012-10-25 15:22:24 -0500 | [diff] [blame] | 1707 | |
| 1708 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Name-LSA\n"); |
| 1709 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Deleting name lsa\n"); |
| 1710 | write_log_for_name_lsa(name_lsa); |
| 1711 | writeLogg(__FILE__,__FUNCTION__,__LINE__," name_lsa_end\n"); |
| 1712 | |
| 1713 | |
akmhoque | 14b3f34 | 2012-09-14 10:39:02 -0500 | [diff] [blame] | 1714 | char *current_time_stamp=(char *)malloc(20); |
| 1715 | memset(current_time_stamp,0,20); |
| 1716 | get_current_timestamp_micro(current_time_stamp); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1717 | |
akmhoque | 14b3f34 | 2012-09-14 10:39:02 -0500 | [diff] [blame] | 1718 | free(name_lsa->header->orig_time); |
| 1719 | name_lsa->header->orig_time=(char *)malloc(strlen(current_time_stamp)+1); //free |
| 1720 | memset(name_lsa->header->orig_time,0,strlen(current_time_stamp)+1); |
| 1721 | memcpy(name_lsa->header->orig_time,current_time_stamp,strlen(current_time_stamp)+1); |
akmhoque | a98c214 | 2012-10-25 15:22:24 -0500 | [diff] [blame] | 1722 | |
| 1723 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Name-LSA\n"); |
| 1724 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adding name lsa\n"); |
| 1725 | write_log_for_name_lsa(name_lsa); |
| 1726 | writeLogg(__FILE__,__FUNCTION__,__LINE__," name_lsa_end\n"); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1727 | |
akmhoque | 14b3f34 | 2012-09-14 10:39:02 -0500 | [diff] [blame] | 1728 | free(current_time_stamp); |
| 1729 | } |
| 1730 | else |
| 1731 | { |
| 1732 | char lst[2]; |
| 1733 | memset(lst,0,2); |
| 1734 | sprintf(lst,"%d",name_lsa->header->ls_type); |
| 1735 | |
| 1736 | char lsid[10]; |
| 1737 | memset(lsid,0,10); |
| 1738 | sprintf(lsid,"%ld",name_lsa->header->ls_id); |
| 1739 | |
| 1740 | |
| 1741 | char *key=(char *)malloc(strlen(name_lsa->header->orig_router->name)+1+strlen(lst)+1+strlen(lsid)+1); |
| 1742 | memset(key,0,strlen(name_lsa->header->orig_router->name)+1+strlen(lst)+1+strlen(lsid)+1); |
| 1743 | |
| 1744 | |
| 1745 | make_name_lsa_key(key, name_lsa->header->orig_router->name,name_lsa->header->ls_type,name_lsa->header->ls_id); |
akmhoque | 14b3f34 | 2012-09-14 10:39:02 -0500 | [diff] [blame] | 1746 | |
| 1747 | nlsr->event = ccn_schedule_event(nlsr->sched, 10, &delete_name_lsa, (void *)key, 0); |
| 1748 | } |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1749 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1750 | if ( nlsr->debugging ) |
| 1751 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1752 | if ( nlsr->detailed_logging ) |
| 1753 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1754 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1755 | set_new_lsdb_version(); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1756 | |
| 1757 | if ( nlsr->debugging ) |
| 1758 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1759 | if ( nlsr->detailed_logging ) |
| 1760 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1761 | |
| 1762 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1763 | |
| 1764 | print_name_lsdb(); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1765 | } |
| 1766 | } |
| 1767 | else |
| 1768 | { |
| 1769 | if ( lsa_life_time > nlsr->router_dead_interval ) |
| 1770 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1771 | if ( nlsr->debugging ) |
| 1772 | printf("Others Name LSA need to be deleted\n"); |
| 1773 | if ( nlsr->detailed_logging ) |
| 1774 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Others Name LSA need to be deleted\n"); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1775 | |
| 1776 | char lst[2]; |
| 1777 | memset(lst,0,2); |
| 1778 | sprintf(lst,"%d",name_lsa->header->ls_type); |
| 1779 | |
| 1780 | char lsid[10]; |
| 1781 | memset(lsid,0,10); |
| 1782 | sprintf(lsid,"%ld",name_lsa->header->ls_id); |
| 1783 | |
| 1784 | |
| 1785 | char *key=(char *)malloc(strlen(name_lsa->header->orig_router->name)+1+strlen(lst)+1+strlen(lsid)+1); |
| 1786 | memset(key,0,strlen(name_lsa->header->orig_router->name)+1+strlen(lst)+1+strlen(lsid)+1); |
| 1787 | |
| 1788 | |
| 1789 | make_name_lsa_key(key, name_lsa->header->orig_router->name,name_lsa->header->ls_type,name_lsa->header->ls_id); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1790 | |
| 1791 | nlsr->event = ccn_schedule_event(nlsr->sched, 10, &delete_name_lsa, (void *)key, 0); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1792 | } |
| 1793 | } |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1794 | |
| 1795 | hashtb_next(e); |
| 1796 | } |
| 1797 | |
| 1798 | hashtb_end(e); |
| 1799 | |
| 1800 | free(time_stamp); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1801 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1802 | |
| 1803 | } |
| 1804 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1805 | void |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1806 | refresh_adj_lsdb(void) |
| 1807 | { |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1808 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1809 | if ( nlsr->debugging ) |
| 1810 | printf("refresh_adj_lsdb called \n"); |
| 1811 | if ( nlsr->detailed_logging ) |
| 1812 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"refresh_adj_lsdb called \n"); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1813 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1814 | char *time_stamp=(char *)malloc(20); |
| 1815 | memset(time_stamp,0,20); |
| 1816 | get_current_timestamp_micro(time_stamp); |
| 1817 | |
| 1818 | long int lsa_life_time; |
| 1819 | |
| 1820 | int i, adj_lsdb_element; |
| 1821 | struct alsa *adj_lsa; |
| 1822 | |
| 1823 | struct hashtb_enumerator ee; |
| 1824 | struct hashtb_enumerator *e = ⅇ |
| 1825 | |
| 1826 | hashtb_start(nlsr->lsdb->adj_lsdb, e); |
| 1827 | adj_lsdb_element=hashtb_n(nlsr->lsdb->adj_lsdb); |
| 1828 | |
| 1829 | for(i=0;i<adj_lsdb_element;i++) |
| 1830 | { |
| 1831 | adj_lsa=e->data; |
| 1832 | |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1833 | lsa_life_time=get_time_diff(time_stamp,adj_lsa->header->orig_time); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1834 | |
| 1835 | if ( nlsr->debugging ) |
| 1836 | printf("LSA Life Time: %ld \n",lsa_life_time); |
| 1837 | if ( nlsr->detailed_logging ) |
| 1838 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"LSA Life Time: %ld \n",lsa_life_time); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1839 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1840 | if ( strcmp(adj_lsa->header->orig_router->name,nlsr->router_name) == 0) |
| 1841 | { |
| 1842 | if ( lsa_life_time > nlsr->lsa_refresh_time ) |
| 1843 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1844 | if ( nlsr->debugging ) |
| 1845 | printf("Own Adj LSA need to be refrshed\n"); |
| 1846 | if ( nlsr->detailed_logging ) |
| 1847 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Own Adj LSA need to be refrshed\n"); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1848 | |
akmhoque | a98c214 | 2012-10-25 15:22:24 -0500 | [diff] [blame] | 1849 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adj-LSA\n"); |
| 1850 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Deleting adj lsa\n"); |
| 1851 | write_log_for_adj_lsa(adj_lsa); |
| 1852 | writeLogg(__FILE__,__FUNCTION__,__LINE__," adj_lsa_end\n"); |
| 1853 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1854 | char *current_time_stamp=(char *)malloc(20); |
| 1855 | memset(current_time_stamp,0,20); |
| 1856 | get_current_timestamp_micro(current_time_stamp); |
| 1857 | |
| 1858 | free(adj_lsa->header->orig_time); |
| 1859 | adj_lsa->header->orig_time=(char *)malloc(strlen(current_time_stamp)+1); //free |
| 1860 | memset(adj_lsa->header->orig_time,0,strlen(current_time_stamp)+1); |
| 1861 | memcpy(adj_lsa->header->orig_time,current_time_stamp,strlen(current_time_stamp)+1); |
| 1862 | |
| 1863 | free(current_time_stamp); |
| 1864 | |
akmhoque | a98c214 | 2012-10-25 15:22:24 -0500 | [diff] [blame] | 1865 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adj-LSA\n"); |
| 1866 | writeLogg(__FILE__,__FUNCTION__,__LINE__," Adding adj lsa\n"); |
| 1867 | write_log_for_adj_lsa(adj_lsa); |
| 1868 | writeLogg(__FILE__,__FUNCTION__,__LINE__," adj_lsa_end\n"); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1869 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1870 | if ( nlsr->debugging ) |
| 1871 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1872 | if ( nlsr->detailed_logging ) |
| 1873 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1874 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1875 | set_new_lsdb_version(); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1876 | |
| 1877 | if ( nlsr->debugging ) |
| 1878 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1879 | if ( nlsr->detailed_logging ) |
| 1880 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1881 | |
| 1882 | print_adj_lsdb(); |
| 1883 | } |
| 1884 | } |
| 1885 | else |
| 1886 | { |
| 1887 | if ( lsa_life_time > nlsr->router_dead_interval ) |
| 1888 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 1889 | |
| 1890 | if ( nlsr->debugging ) |
| 1891 | printf("Others Adj LSA need to be deleted\n"); |
| 1892 | if ( nlsr->detailed_logging ) |
| 1893 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Others Adj LSA need to be deleted\n"); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1894 | |
| 1895 | char *key=(char *)malloc(adj_lsa->header->orig_router->length+2+2); |
| 1896 | memset(key,0,adj_lsa->header->orig_router->length+2); |
| 1897 | make_adj_lsa_key(key,adj_lsa); |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1898 | |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 1899 | nlsr->event = ccn_schedule_event(nlsr->sched, 10, &delete_adj_lsa, (void *)key, 0); |
| 1900 | } |
| 1901 | } |
| 1902 | |
| 1903 | |
| 1904 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1905 | hashtb_next(e); |
| 1906 | } |
| 1907 | |
| 1908 | hashtb_end(e); |
| 1909 | |
| 1910 | free(time_stamp); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 1911 | } |
| 1912 | |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 1913 | |
| 1914 | void |
| 1915 | refresh_cor_lsdb(void) |
| 1916 | { |
| 1917 | |
| 1918 | if ( nlsr->debugging ) |
| 1919 | printf("refresh_cor_lsdb called \n"); |
| 1920 | if ( nlsr->detailed_logging ) |
| 1921 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"refresh_cor_lsdb called \n"); |
| 1922 | |
| 1923 | char *time_stamp=(char *)malloc(20); |
| 1924 | memset(time_stamp,0,20); |
| 1925 | get_current_timestamp_micro(time_stamp); |
| 1926 | |
| 1927 | long int lsa_life_time; |
| 1928 | |
| 1929 | int i, cor_lsdb_element; |
| 1930 | struct clsa *cor_lsa; |
| 1931 | |
| 1932 | struct hashtb_enumerator ee; |
| 1933 | struct hashtb_enumerator *e = ⅇ |
| 1934 | |
| 1935 | hashtb_start(nlsr->lsdb->cor_lsdb, e); |
| 1936 | cor_lsdb_element=hashtb_n(nlsr->lsdb->cor_lsdb); |
| 1937 | |
| 1938 | for(i=0;i<cor_lsdb_element;i++) |
| 1939 | { |
| 1940 | cor_lsa=e->data; |
| 1941 | |
| 1942 | lsa_life_time=get_time_diff(time_stamp,cor_lsa->header->orig_time); |
| 1943 | |
| 1944 | if ( nlsr->debugging ) |
| 1945 | printf("LSA Life Time: %ld \n",lsa_life_time); |
| 1946 | if ( nlsr->detailed_logging ) |
| 1947 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"LSA Life Time: %ld \n",lsa_life_time); |
| 1948 | |
| 1949 | if ( strcmp(cor_lsa->header->orig_router->name,nlsr->router_name) == 0) |
| 1950 | { |
| 1951 | if ( lsa_life_time > nlsr->lsa_refresh_time ) |
| 1952 | { |
| 1953 | if ( nlsr->debugging ) |
| 1954 | printf("Own Cor LSA need to be refrshed\n"); |
| 1955 | if ( nlsr->detailed_logging ) |
| 1956 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Own Cor LSA need to be refrshed\n"); |
| 1957 | |
| 1958 | //writeLogg(__FILE__,__FUNCTION__,__LINE__," Adj-LSA\n"); |
| 1959 | //writeLogg(__FILE__,__FUNCTION__,__LINE__," Deleting adj lsa\n"); |
| 1960 | //write_log_for_adj_lsa(adj_lsa); |
| 1961 | //writeLogg(__FILE__,__FUNCTION__,__LINE__," adj_lsa_end\n"); |
| 1962 | |
| 1963 | char *current_time_stamp=(char *)malloc(20); |
| 1964 | memset(current_time_stamp,0,20); |
| 1965 | get_current_timestamp_micro(current_time_stamp); |
| 1966 | |
| 1967 | free(cor_lsa->header->orig_time); |
| 1968 | cor_lsa->header->orig_time=(char *)malloc(strlen(current_time_stamp)+1); //free |
| 1969 | memset(cor_lsa->header->orig_time,0,strlen(current_time_stamp)+1); |
| 1970 | memcpy(cor_lsa->header->orig_time,current_time_stamp,strlen(current_time_stamp)+1); |
| 1971 | |
| 1972 | free(current_time_stamp); |
| 1973 | |
| 1974 | //writeLogg(__FILE__,__FUNCTION__,__LINE__," Adj-LSA\n"); |
| 1975 | //writeLogg(__FILE__,__FUNCTION__,__LINE__," Adding adj lsa\n"); |
| 1976 | //write_log_for_adj_lsa(adj_lsa); |
| 1977 | //writeLogg(__FILE__,__FUNCTION__,__LINE__," adj_lsa_end\n"); |
| 1978 | |
| 1979 | if ( nlsr->debugging ) |
| 1980 | printf("Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1981 | if ( nlsr->detailed_logging ) |
| 1982 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Old Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1983 | |
| 1984 | set_new_lsdb_version(); |
| 1985 | |
| 1986 | if ( nlsr->debugging ) |
| 1987 | printf("New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1988 | if ( nlsr->detailed_logging ) |
| 1989 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"New Version Number of LSDB: %s \n",nlsr->lsdb->lsdb_version); |
| 1990 | |
| 1991 | print_adj_lsdb(); |
| 1992 | } |
| 1993 | } |
| 1994 | else |
| 1995 | { |
| 1996 | if ( lsa_life_time > nlsr->router_dead_interval ) |
| 1997 | { |
| 1998 | |
| 1999 | if ( nlsr->debugging ) |
| 2000 | printf("Others Adj LSA need to be deleted\n"); |
| 2001 | if ( nlsr->detailed_logging ) |
| 2002 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Others Adj LSA need to be deleted\n"); |
| 2003 | |
| 2004 | hashtb_delete(e); |
| 2005 | i++; |
| 2006 | } |
| 2007 | } |
| 2008 | |
| 2009 | |
| 2010 | |
| 2011 | hashtb_next(e); |
| 2012 | } |
| 2013 | |
| 2014 | hashtb_end(e); |
| 2015 | |
| 2016 | free(time_stamp); |
| 2017 | } |
| 2018 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 2019 | int |
| 2020 | refresh_lsdb(struct ccn_schedule *sched, void *clienth, struct ccn_scheduled_event *ev, int flags) |
| 2021 | { |
| 2022 | if(flags == CCN_SCHEDULE_CANCEL) |
| 2023 | { |
| 2024 | return -1; |
| 2025 | } |
| 2026 | |
| 2027 | nlsr_lock(); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 2028 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 2029 | if ( nlsr->debugging ) |
| 2030 | printf("refresh_lsdb called\n"); |
| 2031 | if ( nlsr->detailed_logging ) |
| 2032 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"refresh_lsdb called\n"); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 2033 | |
| 2034 | refresh_name_lsdb(); |
| 2035 | refresh_adj_lsdb(); |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 2036 | refresh_cor_lsdb(); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 2037 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 2038 | nlsr->event = ccn_schedule_event(nlsr->sched, 60000000, &refresh_lsdb, NULL, 0); |
akmhoque | da5b683 | 2012-09-13 22:33:55 -0500 | [diff] [blame] | 2039 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 2040 | nlsr_unlock(); |
| 2041 | return 0; |
| 2042 | } |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame^] | 2043 | |
| 2044 | void |
| 2045 | write_adj_lsa_to_repo(char *repo_content_prefix, struct name_prefix *lsa_id) |
| 2046 | { |
| 2047 | if ( nlsr->debugging ) |
| 2048 | printf("write_adj_lsa_to_repo called\n"); |
| 2049 | if ( nlsr->debugging ) |
| 2050 | printf("Content Prefix: %s\n",repo_content_prefix); |
| 2051 | |
| 2052 | struct ccn_charbuf *lsa_data=ccn_charbuf_create(); |
| 2053 | get_adj_lsa_data(lsa_data,lsa_id); |
| 2054 | if ( nlsr->debugging ) |
| 2055 | printf("Adj LSA Data: %s \n",ccn_charbuf_as_string(lsa_data)); |
| 2056 | |
| 2057 | write_data_to_repo(ccn_charbuf_as_string(lsa_data), repo_content_prefix); |
| 2058 | |
| 2059 | ccn_charbuf_destroy(&lsa_data); |
| 2060 | } |
| 2061 | |
| 2062 | void |
| 2063 | write_name_lsa_to_repo(char *repo_content_prefix, struct name_prefix *lsa_id) |
| 2064 | { |
| 2065 | if ( nlsr->debugging ) |
| 2066 | printf("write_name_lsa_to_repo called\n"); |
| 2067 | if ( nlsr->debugging ) |
| 2068 | printf("Content Prefix: %s\n",repo_content_prefix); |
| 2069 | |
| 2070 | struct ccn_charbuf *lsa_data=ccn_charbuf_create(); |
| 2071 | get_name_lsa_data(lsa_data,lsa_id); |
| 2072 | |
| 2073 | if ( nlsr->debugging ) |
| 2074 | printf("Name LSA Data: %s \n",ccn_charbuf_as_string(lsa_data)); |
| 2075 | |
| 2076 | write_data_to_repo(ccn_charbuf_as_string(lsa_data), repo_content_prefix); |
| 2077 | |
| 2078 | ccn_charbuf_destroy(&lsa_data); |
| 2079 | } |
| 2080 | |
| 2081 | |
| 2082 | void |
| 2083 | write_name_lsdb_to_repo(char *slice_prefix) |
| 2084 | { |
| 2085 | int i, name_lsdb_element; |
| 2086 | |
| 2087 | struct nlsa *name_lsa; |
| 2088 | struct hashtb_enumerator ee; |
| 2089 | struct hashtb_enumerator *e = ⅇ |
| 2090 | |
| 2091 | hashtb_start(nlsr->lsdb->name_lsdb, e); |
| 2092 | name_lsdb_element=hashtb_n(nlsr->lsdb->name_lsdb); |
| 2093 | |
| 2094 | for(i=0;i<name_lsdb_element;i++) |
| 2095 | { |
| 2096 | name_lsa=e->data; |
| 2097 | |
| 2098 | char lst[2]; |
| 2099 | memset(lst,0,2); |
| 2100 | sprintf(lst,"%d",name_lsa->header->ls_type); |
| 2101 | |
| 2102 | char lsid[10]; |
| 2103 | memset(lsid,0,10); |
| 2104 | sprintf(lsid,"%ld",name_lsa->header->ls_id); |
| 2105 | |
| 2106 | |
| 2107 | char *key=(char *)malloc(strlen(name_lsa->header->orig_router->name)+1+strlen(lst)+1+strlen(lsid)+1); |
| 2108 | memset(key,0,strlen(name_lsa->header->orig_router->name)+1+strlen(lst)+1+strlen(lsid)+1); |
| 2109 | |
| 2110 | |
| 2111 | make_name_lsa_key(key, name_lsa->header->orig_router->name,name_lsa->header->ls_type,name_lsa->header->ls_id); |
| 2112 | |
| 2113 | if ( nlsr->debugging ) |
| 2114 | printf("Name LSA Key: %s \n",key); |
| 2115 | |
| 2116 | |
| 2117 | char *repo_key=(char *)malloc(strlen(slice_prefix)+1+strlen(name_lsa->header->orig_router->name)+1+strlen(lst)+1+strlen(lsid)+1+strlen(name_lsa->header->orig_time)+1+15); |
| 2118 | memset(repo_key,0,strlen(slice_prefix)+1+strlen(name_lsa->header->orig_router->name)+1+strlen(lst)+1+strlen(lsid)+1+strlen(name_lsa->header->orig_time)+1+15); |
| 2119 | make_name_lsa_prefix_for_repo(repo_key, name_lsa->header->orig_router->name,name_lsa->header->ls_type,name_lsa->header->ls_id,name_lsa->header->orig_time,slice_prefix); |
| 2120 | |
| 2121 | if ( nlsr->debugging ) |
| 2122 | printf("Name LSA Repo Key: %s \n",repo_key); |
| 2123 | |
| 2124 | struct name_prefix *lsaid=(struct name_prefix *)malloc(sizeof(struct name_prefix)); |
| 2125 | lsaid->name=(char *)malloc(strlen(key)+1); |
| 2126 | memset(lsaid->name, 0, strlen(key)+1); |
| 2127 | memcpy(lsaid->name,key,strlen(key)); |
| 2128 | lsaid->length=strlen(key)+1; |
| 2129 | |
| 2130 | |
| 2131 | write_name_lsa_to_repo(repo_key, lsaid); |
| 2132 | |
| 2133 | free(key); |
| 2134 | free(repo_key); |
| 2135 | free(lsaid->name); |
| 2136 | free(lsaid); |
| 2137 | |
| 2138 | hashtb_next(e); |
| 2139 | } |
| 2140 | |
| 2141 | hashtb_end(e); |
| 2142 | |
| 2143 | |
| 2144 | } |
| 2145 | |
| 2146 | void |
| 2147 | print_cor_lsa(struct clsa *cor_lsa) |
| 2148 | { |
| 2149 | if ( nlsr->debugging ) |
| 2150 | { |
| 2151 | printf("-----------Cor LSA Content---------------\n"); |
| 2152 | printf(" Origination Router : %s\n",cor_lsa->header->orig_router->name); |
| 2153 | printf(" Origination Router Length: %d\n",cor_lsa->header->orig_router->length); |
| 2154 | printf(" LS Type : %d\n",cor_lsa->header->ls_type); |
| 2155 | printf(" Origination Time : %s\n",cor_lsa->header->orig_time); |
| 2156 | printf(" LSA Data \n"); |
| 2157 | printf(" Cor R: : %f\n",cor_lsa->cor_r); |
| 2158 | printf(" Cor Theta : %f\n",cor_lsa->cor_theta); |
| 2159 | |
| 2160 | printf("\n"); |
| 2161 | } |
| 2162 | } |
| 2163 | |
| 2164 | void |
| 2165 | print_cor_lsdb() |
| 2166 | { |
| 2167 | |
| 2168 | if ( nlsr->debugging ) |
| 2169 | printf("print_cor_lsdb called \n"); |
| 2170 | |
| 2171 | struct hashtb_enumerator ee; |
| 2172 | struct hashtb_enumerator *e = ⅇ |
| 2173 | |
| 2174 | int i=1; |
| 2175 | |
| 2176 | for (hashtb_start(nlsr->lsdb->cor_lsdb, e); e->key != NULL; hashtb_next(e)) |
| 2177 | { |
| 2178 | if ( nlsr->debugging ) |
| 2179 | printf("-----------Cor LSA (%d)---------------\n",i); |
| 2180 | struct clsa *cor_lsa=e->data; |
| 2181 | print_cor_lsa(cor_lsa); |
| 2182 | i++; |
| 2183 | } |
| 2184 | hashtb_end(e); |
| 2185 | |
| 2186 | if ( nlsr->debugging ) |
| 2187 | printf("\n"); |
| 2188 | if ( nlsr->detailed_logging ) |
| 2189 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"\n"); |
| 2190 | } |
| 2191 | |
| 2192 | void |
| 2193 | install_cor_lsa(struct clsa *cor_lsa) |
| 2194 | { |
| 2195 | if ( nlsr->debugging ) |
| 2196 | printf("install_cor_lsa called \n"); |
| 2197 | if ( nlsr->detailed_logging ) |
| 2198 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"install_cor_lsa called \n"); |
| 2199 | |
| 2200 | |
| 2201 | char *time_stamp=(char *)malloc(20); |
| 2202 | memset(time_stamp,0,20); |
| 2203 | get_current_timestamp_micro(time_stamp); |
| 2204 | |
| 2205 | |
| 2206 | char *key=(char *)malloc(cor_lsa->header->orig_router->length+2+2); |
| 2207 | memset(key,0,cor_lsa->header->orig_router->length+2); |
| 2208 | make_cor_lsa_key(key,cor_lsa); |
| 2209 | |
| 2210 | if ( nlsr->debugging ) |
| 2211 | printf("Cor LSA key: %s \n",key); |
| 2212 | |
| 2213 | struct hashtb_enumerator ee; |
| 2214 | struct hashtb_enumerator *e = ⅇ |
| 2215 | int res; |
| 2216 | |
| 2217 | hashtb_start(nlsr->lsdb->cor_lsdb, e); |
| 2218 | res = hashtb_seek(e, key, strlen(key), 0); |
| 2219 | |
| 2220 | if ( res == HT_NEW_ENTRY ) |
| 2221 | { |
| 2222 | if ( nlsr->debugging ) |
| 2223 | printf("New Cor LSA... \n"); |
| 2224 | |
| 2225 | struct clsa *new_cor_lsa=(struct clsa *)malloc(sizeof( struct clsa )); |
| 2226 | new_cor_lsa=e->data; |
| 2227 | new_cor_lsa->header=(struct alsa_header *)malloc(sizeof(struct alsa_header )); |
| 2228 | |
| 2229 | new_cor_lsa->header->orig_router=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 2230 | new_cor_lsa->header->orig_router->name=(char *)malloc(strlen(cor_lsa->header->orig_router->name)+1); |
| 2231 | memset(new_cor_lsa->header->orig_router->name,0,strlen(cor_lsa->header->orig_router->name)+1); |
| 2232 | memcpy(new_cor_lsa->header->orig_router->name,cor_lsa->header->orig_router->name,strlen(cor_lsa->header->orig_router->name)+1); |
| 2233 | new_cor_lsa->header->orig_router->length=cor_lsa->header->orig_router->length; |
| 2234 | |
| 2235 | new_cor_lsa->header->orig_time=(char *)malloc(strlen(cor_lsa->header->orig_time)+1); //free |
| 2236 | memset(new_cor_lsa->header->orig_time,0,strlen(cor_lsa->header->orig_time)+1); |
| 2237 | memcpy(new_cor_lsa->header->orig_time,cor_lsa->header->orig_time,strlen(cor_lsa->header->orig_time)+1); |
| 2238 | |
| 2239 | new_cor_lsa->header->ls_type=cor_lsa->header->ls_type; |
| 2240 | |
| 2241 | new_cor_lsa->cor_r=cor_lsa->cor_r; |
| 2242 | new_cor_lsa->cor_theta=cor_lsa->cor_theta; |
| 2243 | } |
| 2244 | else if ( res == HT_OLD_ENTRY ) |
| 2245 | { |
| 2246 | if ( nlsr->debugging ) |
| 2247 | printf("Cor LSA exists (Old)... \n"); |
| 2248 | } |
| 2249 | hashtb_end(e); |
| 2250 | |
| 2251 | free(key); |
| 2252 | |
| 2253 | } |
| 2254 | |
| 2255 | void |
| 2256 | build_cor_lsa(struct clsa *cor_lsa, double cor_r, double cor_theta) |
| 2257 | { |
| 2258 | cor_lsa->header=(struct alsa_header *)malloc(sizeof(struct alsa_header )); |
| 2259 | cor_lsa->header->ls_type=LS_TYPE_COR; |
| 2260 | |
| 2261 | char *time_stamp=(char *)malloc(20); |
| 2262 | memset(time_stamp,0,20); |
| 2263 | get_current_timestamp_micro(time_stamp); |
| 2264 | |
| 2265 | cor_lsa->header->orig_time=(char *)malloc(strlen(time_stamp)+1); //free |
| 2266 | memset(cor_lsa->header->orig_time,0,strlen(time_stamp)+1); |
| 2267 | memcpy(cor_lsa->header->orig_time,time_stamp,strlen(time_stamp)+1); |
| 2268 | free(time_stamp); |
| 2269 | |
| 2270 | cor_lsa->header->orig_router=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 2271 | cor_lsa->header->orig_router->name=(char *)malloc(strlen(nlsr->router_name)+1); |
| 2272 | memset(cor_lsa->header->orig_router->name,0,strlen(nlsr->router_name)+1); |
| 2273 | memcpy(cor_lsa->header->orig_router->name,nlsr->router_name,strlen(nlsr->router_name)+1); |
| 2274 | cor_lsa->header->orig_router->length=strlen(nlsr->router_name)+1; |
| 2275 | |
| 2276 | cor_lsa->cor_r=cor_r; |
| 2277 | cor_lsa->cor_theta=cor_theta; |
| 2278 | |
| 2279 | } |
| 2280 | |
| 2281 | void |
| 2282 | build_others_cor_lsa(struct clsa *cor_lsa,char *orig_router, int ls_type,char *orig_time, double cor_r, double cor_theta) |
| 2283 | { |
| 2284 | cor_lsa->header=(struct alsa_header *)malloc(sizeof(struct alsa_header )); |
| 2285 | cor_lsa->header->ls_type=ls_type; |
| 2286 | |
| 2287 | cor_lsa->header->orig_time=(char *)malloc(strlen(orig_time)+1); |
| 2288 | memset(cor_lsa->header->orig_time,0,strlen(orig_time)+1); |
| 2289 | memcpy(cor_lsa->header->orig_time,orig_time,strlen(orig_time)+1); |
| 2290 | |
| 2291 | cor_lsa->header->orig_router=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 2292 | cor_lsa->header->orig_router->name=(char *)malloc(strlen(orig_router)+1); |
| 2293 | memset(cor_lsa->header->orig_router->name,0,strlen(orig_router)+1); |
| 2294 | memcpy(cor_lsa->header->orig_router->name,orig_router,strlen(orig_router)+1); |
| 2295 | cor_lsa->header->orig_router->length=strlen(orig_router)+1; |
| 2296 | |
| 2297 | cor_lsa->cor_r=cor_r; |
| 2298 | cor_lsa->cor_theta=cor_theta; |
| 2299 | |
| 2300 | } |
| 2301 | |
| 2302 | void |
| 2303 | build_and_install_others_cor_lsa(char *orig_router,int ls_type,char *orig_time, double cor_r, double cor_theta) |
| 2304 | { |
| 2305 | struct clsa *cor_lsa=(struct clsa *)malloc(sizeof( struct clsa )); |
| 2306 | build_others_cor_lsa(cor_lsa,orig_router,ls_type, orig_time, cor_r, cor_theta); |
| 2307 | install_cor_lsa(cor_lsa); |
| 2308 | |
| 2309 | print_cor_lsdb(); |
| 2310 | |
| 2311 | free(cor_lsa->header->orig_router); |
| 2312 | free(cor_lsa->header->orig_time); |
| 2313 | free(cor_lsa->header); |
| 2314 | free(cor_lsa); |
| 2315 | |
| 2316 | } |
| 2317 | |
| 2318 | |
| 2319 | void |
| 2320 | build_and_install_cor_lsa() |
| 2321 | { |
| 2322 | |
| 2323 | |
| 2324 | |
| 2325 | struct clsa *cor_lsa=(struct clsa *)malloc(sizeof( struct clsa )); |
| 2326 | |
| 2327 | build_cor_lsa(cor_lsa,nlsr->cor_r,nlsr->cor_theta); |
| 2328 | install_cor_lsa(cor_lsa); |
| 2329 | |
| 2330 | write_cor_lsa_to_repo(cor_lsa); |
| 2331 | |
| 2332 | print_cor_lsdb(); |
| 2333 | |
| 2334 | free(cor_lsa->header->orig_router); |
| 2335 | free(cor_lsa->header->orig_time); |
| 2336 | free(cor_lsa->header); |
| 2337 | free(cor_lsa); |
| 2338 | |
| 2339 | } |
| 2340 | |
| 2341 | void |
| 2342 | get_cor_lsa_data(struct ccn_charbuf *lsa_data,char *cor_lsa_key) |
| 2343 | { |
| 2344 | if ( nlsr->debugging ) |
| 2345 | printf("get_cor_lsa_data called \n"); |
| 2346 | if ( nlsr->detailed_logging ) |
| 2347 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"get_adj_lsa_data called \n"); |
| 2348 | |
| 2349 | struct clsa *cor_lsa=(struct clsa*)malloc(sizeof(struct clsa )); |
| 2350 | |
| 2351 | struct hashtb_enumerator ee; |
| 2352 | struct hashtb_enumerator *e = ⅇ |
| 2353 | int res; |
| 2354 | |
| 2355 | hashtb_start(nlsr->lsdb->cor_lsdb, e); |
| 2356 | res = hashtb_seek(e, cor_lsa_key, strlen(cor_lsa_key), 0); |
| 2357 | |
| 2358 | if( res == HT_OLD_ENTRY ) |
| 2359 | { |
| 2360 | cor_lsa=e->data; |
| 2361 | |
| 2362 | if ( nlsr->debugging ) |
| 2363 | printf("Cor LSA found \n"); |
| 2364 | if ( nlsr->detailed_logging ) |
| 2365 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Cor LSA found \n"); |
| 2366 | |
| 2367 | ccn_charbuf_append_string(lsa_data,cor_lsa->header->orig_router->name); |
| 2368 | ccn_charbuf_append_string(lsa_data,"|"); |
| 2369 | |
| 2370 | char *temp_length=(char *)malloc(20); |
| 2371 | memset(temp_length,0,20); |
| 2372 | sprintf(temp_length,"%d",cor_lsa->header->orig_router->length); |
| 2373 | ccn_charbuf_append_string(lsa_data,temp_length); |
| 2374 | ccn_charbuf_append_string(lsa_data,"|"); |
| 2375 | free(temp_length); |
| 2376 | |
| 2377 | char *temp_ltype=(char *)malloc(20); |
| 2378 | memset(temp_ltype,0,20); |
| 2379 | sprintf(temp_ltype,"%d",cor_lsa->header->ls_type); |
| 2380 | ccn_charbuf_append_string(lsa_data,temp_ltype); |
| 2381 | ccn_charbuf_append_string(lsa_data,"|"); |
| 2382 | free(temp_ltype); |
| 2383 | |
| 2384 | ccn_charbuf_append_string(lsa_data,cor_lsa->header->orig_time); |
| 2385 | ccn_charbuf_append_string(lsa_data,"|"); |
| 2386 | |
| 2387 | char *cor_r=(char *)malloc(20); |
| 2388 | memset(cor_r,0,20); |
| 2389 | sprintf(cor_r,"%f",cor_lsa->cor_r); |
| 2390 | ccn_charbuf_append_string(lsa_data,cor_r); |
| 2391 | ccn_charbuf_append_string(lsa_data,"|"); |
| 2392 | free(cor_r); |
| 2393 | |
| 2394 | char *cor_theta=(char *)malloc(20); |
| 2395 | memset(cor_theta,0,20); |
| 2396 | sprintf(cor_theta,"%f",cor_lsa->cor_theta); |
| 2397 | ccn_charbuf_append_string(lsa_data,cor_theta); |
| 2398 | ccn_charbuf_append_string(lsa_data,"|"); |
| 2399 | free(cor_theta); |
| 2400 | |
| 2401 | } |
| 2402 | else if(res == HT_NEW_ENTRY) |
| 2403 | { |
| 2404 | hashtb_delete(e); |
| 2405 | } |
| 2406 | |
| 2407 | hashtb_end(e); |
| 2408 | } |
| 2409 | |
| 2410 | void |
| 2411 | write_cor_lsa_to_repo(struct clsa *cor_lsa) |
| 2412 | { |
| 2413 | |
| 2414 | |
| 2415 | if ( nlsr->debugging ) |
| 2416 | printf("write_cor_lsa_to_repo called\n"); |
| 2417 | |
| 2418 | |
| 2419 | char *key=(char *)malloc(cor_lsa->header->orig_router->length+2+2); |
| 2420 | memset(key,0,cor_lsa->header->orig_router->length+2+2); |
| 2421 | make_cor_lsa_key(key,cor_lsa); |
| 2422 | |
| 2423 | struct ccn_charbuf *lsa_data=ccn_charbuf_create(); |
| 2424 | get_cor_lsa_data(lsa_data,key); |
| 2425 | |
| 2426 | if ( nlsr->debugging ) |
| 2427 | printf("Cor LSA Data: %s \n",ccn_charbuf_as_string(lsa_data)); |
| 2428 | char *lst=(char *)malloc(20); |
| 2429 | memset(lst,0,20); |
| 2430 | sprintf(lst,"%d",cor_lsa->header->ls_type); |
| 2431 | char *repo_key=(char *)malloc(strlen(nlsr->slice_prefix)+strlen(cor_lsa->header->orig_time)+strlen(cor_lsa->header->orig_router->name) + strlen(lst) + 5+15); |
| 2432 | memset(repo_key, 0, strlen(nlsr->slice_prefix)+strlen(cor_lsa->header->orig_time)+strlen(cor_lsa->header->orig_router->name) + strlen(lst) + 5+15); |
| 2433 | make_cor_lsa_prefix_for_repo(repo_key, cor_lsa->header->orig_router->name,LS_TYPE_COR,cor_lsa->header->orig_time,nlsr->slice_prefix); |
| 2434 | |
| 2435 | if ( nlsr->debugging ) |
| 2436 | printf("Cor LSA Repo Key: %s \n",repo_key); |
| 2437 | |
| 2438 | write_data_to_repo(ccn_charbuf_as_string(lsa_data), repo_key); |
| 2439 | |
| 2440 | |
| 2441 | |
| 2442 | free(lst); |
| 2443 | free(key); |
| 2444 | free(repo_key); |
| 2445 | ccn_charbuf_destroy(&lsa_data); |
| 2446 | } |
| 2447 | |
| 2448 | void |
| 2449 | make_cor_lsa_key_by_router_name(char *key,char *router_name) |
| 2450 | { |
| 2451 | memcpy(key+strlen(key),router_name,strlen(router_name)); |
| 2452 | memcpy(key+strlen(key),"/",1); |
| 2453 | char ls_type[2]; |
| 2454 | sprintf(ls_type,"%d",LS_TYPE_COR); |
| 2455 | memcpy(key+strlen(key),ls_type,strlen(ls_type)); |
| 2456 | key[strlen(key)]='\0'; |
| 2457 | } |
| 2458 | |
| 2459 | |
| 2460 | double |
| 2461 | get_hyperbolic_r(char *router) |
| 2462 | { |
| 2463 | double ret=-1.0; |
| 2464 | char *cor_lsa_key=(char *)calloc(strlen(router)+4,sizeof(char)); |
| 2465 | make_cor_lsa_key_by_router_name(cor_lsa_key,router); |
| 2466 | |
| 2467 | |
| 2468 | struct clsa *cor_lsa; |
| 2469 | struct hashtb_enumerator ee; |
| 2470 | struct hashtb_enumerator *e = ⅇ |
| 2471 | int res; |
| 2472 | |
| 2473 | hashtb_start(nlsr->lsdb->cor_lsdb, e); |
| 2474 | res = hashtb_seek(e, cor_lsa_key, strlen(cor_lsa_key), 0); |
| 2475 | |
| 2476 | if ( res == HT_OLD_ENTRY) |
| 2477 | { |
| 2478 | cor_lsa=e->data; |
| 2479 | ret=cor_lsa->cor_r; |
| 2480 | } |
| 2481 | else if(res == HT_NEW_ENTRY) |
| 2482 | { |
| 2483 | hashtb_delete(e); |
| 2484 | } |
| 2485 | |
| 2486 | hashtb_end(e); |
| 2487 | |
| 2488 | free(cor_lsa_key); |
| 2489 | return ret; |
| 2490 | } |
| 2491 | |
| 2492 | double |
| 2493 | get_hyperbolic_theta(char *router) |
| 2494 | { |
| 2495 | double ret=-1.0; |
| 2496 | char *cor_lsa_key=(char *)calloc(strlen(router)+4,sizeof(char)); |
| 2497 | make_cor_lsa_key_by_router_name(cor_lsa_key,router); |
| 2498 | |
| 2499 | struct clsa *cor_lsa; |
| 2500 | struct hashtb_enumerator ee; |
| 2501 | struct hashtb_enumerator *e = ⅇ |
| 2502 | int res; |
| 2503 | |
| 2504 | hashtb_start(nlsr->lsdb->cor_lsdb, e); |
| 2505 | res = hashtb_seek(e, cor_lsa_key, strlen(cor_lsa_key), 0); |
| 2506 | |
| 2507 | if ( res == HT_OLD_ENTRY) |
| 2508 | { |
| 2509 | cor_lsa=e->data; |
| 2510 | ret=cor_lsa->cor_theta; |
| 2511 | } |
| 2512 | else if(res == HT_NEW_ENTRY) |
| 2513 | { |
| 2514 | hashtb_delete(e); |
| 2515 | } |
| 2516 | |
| 2517 | hashtb_end(e); |
| 2518 | |
| 2519 | free(cor_lsa_key); |
| 2520 | return ret; |
| 2521 | } |