akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [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" |
| 21 | #include "nlsr_ndn.h" |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 22 | #include "nlsr_npl.h" |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 23 | #include "nlsr_adl.h" |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 24 | #include "nlsr_lsdb.h" |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 25 | #include "utility.h" |
akmhoque | edb68d9 | 2013-03-05 10:18:16 -0600 | [diff] [blame] | 26 | #include "nlsr_km.h" |
| 27 | #include "nlsr_km_util.h" |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 28 | |
akmhoque | edb68d9 | 2013-03-05 10:18:16 -0600 | [diff] [blame] | 29 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 30 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 31 | /** |
| 32 | * get neighbor name prefix from interest/content name and put into nbr |
| 33 | */ |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 34 | |
| 35 | void |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 36 | get_nbr(struct name_prefix *nbr,struct ccn_closure *selfp, |
| 37 | struct ccn_upcall_info *info) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 38 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 39 | if ( nlsr->debugging ) |
| 40 | printf("get_nbr called\n"); |
| 41 | if ( nlsr->detailed_logging ) |
| 42 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"get_nbr called\n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 43 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 44 | int res,i; |
| 45 | int nlsr_position=0; |
| 46 | int name_comps=(int)info->interest_comps->n; |
| 47 | int len=0; |
| 48 | |
| 49 | for(i=0;i<name_comps;i++) |
| 50 | { |
| 51 | res=ccn_name_comp_strcmp(info->interest_ccnb,info->interest_comps,i,"nlsr"); |
| 52 | if( res == 0) |
| 53 | { |
| 54 | nlsr_position=i; |
| 55 | break; |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | |
| 60 | const unsigned char *comp_ptr1; |
| 61 | size_t comp_size; |
| 62 | for(i=0;i<nlsr_position;i++) |
| 63 | { |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 64 | res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps,i,& |
| 65 | comp_ptr1, &comp_size); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 66 | len+=1; |
| 67 | len+=(int)comp_size; |
| 68 | } |
| 69 | len++; |
| 70 | |
| 71 | char *neighbor=(char *)malloc(len); |
| 72 | memset(neighbor,0,len); |
| 73 | |
| 74 | for(i=0; i<nlsr_position;i++) |
| 75 | { |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 76 | res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps,i, |
| 77 | &comp_ptr1, &comp_size); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 78 | memcpy(neighbor+strlen(neighbor),"/",1); |
| 79 | memcpy(neighbor+strlen(neighbor),(char *)comp_ptr1,strlen((char *)comp_ptr1)); |
| 80 | |
| 81 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 82 | |
akmhoque | 284056b | 2013-03-15 01:20:16 -0500 | [diff] [blame^] | 83 | nbr->name=(char *)calloc(strlen(neighbor)+1,sizeof(char)); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 84 | memcpy(nbr->name,neighbor,strlen(neighbor)+1); |
| 85 | nbr->length=strlen(neighbor)+1; |
| 86 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 87 | if ( nlsr->debugging ) |
| 88 | printf("Neighbor: %s Length: %d\n",nbr->name,nbr->length); |
| 89 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 90 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Neighbor: %s Length: %d\n", |
| 91 | nbr->name,nbr->length); |
akmhoque | cecba94 | 2013-02-25 17:33:34 -0600 | [diff] [blame] | 92 | free(neighbor); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 93 | } |
| 94 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 95 | /** |
| 96 | * Retrieve LSA identifier from content name |
| 97 | */ |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 98 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 99 | void |
| 100 | get_lsa_identifier(struct name_prefix *lsaId,struct ccn_closure *selfp, |
| 101 | struct ccn_upcall_info *info, int offset) |
| 102 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 103 | |
| 104 | if ( nlsr->debugging ) |
| 105 | printf("get_lsa_identifier called\n"); |
| 106 | if ( nlsr->detailed_logging ) |
| 107 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"get_lsa_identifier called\n"); |
| 108 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 109 | int res,i; |
| 110 | int nlsr_position=0; |
| 111 | int name_comps=(int)info->interest_comps->n; |
| 112 | int len=0; |
| 113 | |
| 114 | for(i=0;i<name_comps;i++) |
| 115 | { |
| 116 | res=ccn_name_comp_strcmp(info->interest_ccnb,info->interest_comps,i,"nlsr"); |
| 117 | if( res == 0) |
| 118 | { |
| 119 | nlsr_position=i; |
| 120 | break; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | |
| 125 | const unsigned char *comp_ptr1; |
| 126 | size_t comp_size; |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 127 | for(i=nlsr_position+3+offset;i<info->interest_comps->n-1;i++) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 128 | { |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 129 | res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps,i, |
| 130 | &comp_ptr1, &comp_size); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 131 | len+=1; |
| 132 | len+=(int)comp_size; |
| 133 | } |
| 134 | len++; |
| 135 | |
akmhoque | cecba94 | 2013-02-25 17:33:34 -0600 | [diff] [blame] | 136 | char *neighbor=(char *)calloc(len,sizeof(char)); |
| 137 | //memset(neighbor,0,len); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 138 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 139 | for(i=nlsr_position+3+offset; i<info->interest_comps->n-1;i++) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 140 | { |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 141 | res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps,i, |
| 142 | &comp_ptr1, &comp_size); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 143 | memcpy(neighbor+strlen(neighbor),"/",1); |
| 144 | memcpy(neighbor+strlen(neighbor),(char *)comp_ptr1,strlen((char *)comp_ptr1)); |
| 145 | |
| 146 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 147 | |
| 148 | lsaId->name=(char *)malloc(strlen(neighbor)+1); |
| 149 | memset(lsaId->name,0,strlen(neighbor)+1); |
| 150 | memcpy(lsaId->name,neighbor,strlen(neighbor)+1); |
| 151 | lsaId->length=strlen(neighbor)+1; |
| 152 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 153 | if ( nlsr->debugging ) |
| 154 | printf("LSA Identifier: %s Length: %d\n",lsaId->name,lsaId->length-1); |
| 155 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 156 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"LSA Identifier: %s Length: " |
| 157 | "%d\n",lsaId->name,lsaId->length-1); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 158 | |
akmhoque | cecba94 | 2013-02-25 17:33:34 -0600 | [diff] [blame] | 159 | free(neighbor); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 163 | |
| 164 | /** |
| 165 | * Call back function registered in ccnd to get all interest coming to NLSR |
| 166 | * application |
| 167 | */ |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 168 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 169 | enum ccn_upcall_res |
| 170 | incoming_interest(struct ccn_closure *selfp, |
| 171 | enum ccn_upcall_kind kind, struct ccn_upcall_info *info) |
| 172 | { |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 173 | |
| 174 | nlsr_lock(); |
| 175 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 176 | switch (kind) { |
| 177 | case CCN_UPCALL_FINAL: |
| 178 | break; |
| 179 | case CCN_UPCALL_INTEREST: |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 180 | // printing the name prefix for which it received interest |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 181 | if ( nlsr->debugging ) |
| 182 | printf("Interest Received for name: "); |
| 183 | if ( nlsr->detailed_logging ) |
| 184 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Interest Received for name: "); |
| 185 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 186 | struct ccn_charbuf*c; |
| 187 | c=ccn_charbuf_create(); |
| 188 | ccn_uri_append(c,info->interest_ccnb,info->pi->offset[CCN_PI_E_Name],0); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 189 | |
| 190 | if ( nlsr->debugging ) |
| 191 | printf("%s\n",ccn_charbuf_as_string(c)); |
| 192 | if ( nlsr->detailed_logging ) |
| 193 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"%s\n",ccn_charbuf_as_string(c)); |
| 194 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 195 | ccn_charbuf_destroy(&c); |
| 196 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 197 | process_incoming_interest(selfp, info); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 198 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 199 | break; |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 200 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 201 | default: |
| 202 | break; |
| 203 | } |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 204 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 205 | nlsr_unlock(); |
| 206 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 207 | return CCN_UPCALL_RESULT_OK; |
| 208 | } |
| 209 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 210 | /** |
| 211 | * Function for processing incoming interest and reply with content/NACK content |
| 212 | */ |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 213 | |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 214 | void |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 215 | process_incoming_interest(struct ccn_closure *selfp, struct ccn_upcall_info *info) |
| 216 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 217 | if ( nlsr->debugging ) |
| 218 | printf("process_incoming_interest called \n"); |
| 219 | if ( nlsr->detailed_logging ) |
| 220 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"process_incoming_interest called \n"); |
| 221 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 222 | const unsigned char *comp_ptr1; |
| 223 | size_t comp_size; |
| 224 | int res,i; |
| 225 | int nlsr_position=0; |
| 226 | int name_comps=(int)info->interest_comps->n; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 227 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 228 | for(i=0;i<name_comps;i++) |
| 229 | { |
| 230 | res=ccn_name_comp_strcmp(info->interest_ccnb,info->interest_comps,i,"nlsr"); |
| 231 | if( res == 0) |
| 232 | { |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 233 | nlsr_position=i; |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 234 | break; |
| 235 | } |
| 236 | } |
| 237 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 238 | res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps,nlsr_position+1, |
| 239 | &comp_ptr1, &comp_size); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 240 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 241 | |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 242 | if(!strcmp((char *)comp_ptr1,"info")) |
| 243 | { |
| 244 | process_incoming_interest_info(selfp,info); |
| 245 | } |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame] | 246 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 247 | } |
| 248 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 249 | /** |
akmhoque | 7ab49a3 | 2013-02-20 11:27:51 -0600 | [diff] [blame] | 250 | * Processes incoming interest for "info" interest. Send back reply content back, |
| 251 | * if interest comes from a neighbor with status down, NLSR will send "info" |
| 252 | * ineterst to that neighbor |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 253 | */ |
| 254 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 255 | void |
| 256 | process_incoming_interest_info(struct ccn_closure *selfp, struct ccn_upcall_info *info) |
| 257 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 258 | if ( nlsr->debugging ) |
| 259 | { |
| 260 | printf("process_incoming_interest_info called \n"); |
| 261 | printf("Sending Info Content back.....\n"); |
| 262 | } |
| 263 | if ( nlsr->detailed_logging ) |
| 264 | { |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 265 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"process_incoming_interest_info" |
| 266 | " called \n"); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 267 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Sending Info Content back.....\n"); |
| 268 | } |
| 269 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 270 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 271 | int res; |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 272 | //struct ccn_charbuf *data=ccn_charbuf_create(); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 273 | struct ccn_charbuf *name=ccn_charbuf_create(); |
akmhoque | dd7a7a7 | 2013-02-20 08:25:41 -0600 | [diff] [blame] | 274 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 275 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 276 | res=ccn_charbuf_append(name, info->interest_ccnb + info->pi->offset[CCN_PI_B_Name], |
| 277 | info->pi->offset[CCN_PI_E_Name] - info->pi->offset[CCN_PI_B_Name]); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 278 | if (res >= 0) |
| 279 | { |
akmhoque | dd7a7a7 | 2013-02-20 08:25:41 -0600 | [diff] [blame] | 280 | |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 281 | /* |
akmhoque | c06dcf1 | 2013-02-20 08:13:37 -0600 | [diff] [blame] | 282 | struct ccn_charbuf *pubid = ccn_charbuf_create(); |
| 283 | struct ccn_charbuf *pubkey = ccn_charbuf_create(); |
| 284 | |
akmhoque | 7ca519b | 2013-02-20 09:49:43 -0600 | [diff] [blame] | 285 | //pubid is the digest_result pubkey is result |
| 286 | ccn_get_public_key(nlsr->ccn, NULL, pubid, pubkey); |
| 287 | |
| 288 | |
akmhoque | dd7a7a7 | 2013-02-20 08:25:41 -0600 | [diff] [blame] | 289 | |
| 290 | struct ccn_signing_params sp=CCN_SIGNING_PARAMS_INIT; |
| 291 | sp.template_ccnb=ccn_charbuf_create(); |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 292 | |
akmhoque | b63a41e | 2013-03-01 12:00:20 -0600 | [diff] [blame] | 293 | ccn_charbuf_append_tt(sp.template_ccnb,CCN_DTAG_SignedInfo, CCN_DTAG); |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 294 | ccnb_tagged_putf(sp.template_ccnb, CCN_DTAG_FreshnessSeconds, "%ld", 10); |
| 295 | sp.sp_flags |= CCN_SP_TEMPL_FRESHNESS; |
| 296 | ccn_charbuf_append_closer(sp.template_ccnb); |
akmhoque | b63a41e | 2013-03-01 12:00:20 -0600 | [diff] [blame] | 297 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 298 | |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame] | 299 | char *raw_data=(char *)malloc(20); |
| 300 | memset(raw_data,0,20); |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 301 | sprintf(raw_data,"%s", nlsr->lsdb->lsdb_version); |
| 302 | */ |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 303 | |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 304 | struct ccn_charbuf *resultbuf=ccn_charbuf_create(); |
| 305 | |
| 306 | res=sign_content_with_user_defined_keystore(name, |
| 307 | resultbuf, |
| 308 | "info", |
| 309 | strlen("info"), |
| 310 | nlsr->keystore_path, |
| 311 | nlsr->keystore_passphrase, |
| 312 | nlsr->root_key_prefix, |
| 313 | nlsr->site_name, |
| 314 | nlsr->router_name); |
| 315 | |
| 316 | |
| 317 | //res= ccn_sign_content(nlsr->ccn, data, name, &sp, "info",strlen("info")); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 318 | if(res >= 0) |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 319 | { |
| 320 | if ( nlsr->debugging ) |
| 321 | printf("Signing info Content is successful \n"); |
| 322 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 323 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Signing info Content" |
| 324 | " is successful \n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 325 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 326 | } |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 327 | res=ccn_put(nlsr->ccn,resultbuf->buf,resultbuf->length); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 328 | if(res >= 0) |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 329 | { |
| 330 | if ( nlsr->debugging ) |
| 331 | printf("Sending Info Content is successful \n"); |
| 332 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 333 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Sending info Content" |
| 334 | " is successful \n"); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 335 | } |
| 336 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 337 | |
| 338 | |
akmhoque | e1dd777 | 2013-02-24 14:21:49 -0600 | [diff] [blame] | 339 | struct name_prefix *nbr=(struct name_prefix * )malloc(sizeof(struct name_prefix)); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 340 | get_lsa_identifier(nbr,selfp,info,-1); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 341 | |
| 342 | if ( nlsr->debugging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 343 | printf("Neighbor : %s Length : %d Status : %d\n",nbr->name,nbr->length, |
| 344 | get_adjacent_status(nbr)); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 345 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 346 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Neighbor : %s Length : %d" |
| 347 | " Status : %d\n",nbr->name,nbr->length,get_adjacent_status(nbr)); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 348 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 349 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 350 | if( get_adjacent_status(nbr) == 0 && get_timed_out_number(nbr) >= |
| 351 | nlsr->interest_retry ) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 352 | { |
akmhoque | b819520 | 2012-09-25 11:53:23 -0500 | [diff] [blame] | 353 | update_adjacent_timed_out_zero_to_adl(nbr); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 354 | send_info_interest_to_neighbor(nbr); |
| 355 | } |
| 356 | |
| 357 | free(nbr); |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 358 | //free(raw_data); |
| 359 | //ccn_charbuf_destroy(&sp.template_ccnb); |
| 360 | //ccn_charbuf_destroy(&pubid); |
| 361 | //ccn_charbuf_destroy(&pubkey); |
akmhoque | 284056b | 2013-03-15 01:20:16 -0500 | [diff] [blame^] | 362 | ccn_charbuf_destroy(&resultbuf); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 363 | } |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 364 | |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 365 | //ccn_charbuf_destroy(&data); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 366 | ccn_charbuf_destroy(&name); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 367 | |
akmhoque | bf1aa83 | 2012-08-13 13:26:59 -0500 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | |
akmhoque | 7ab49a3 | 2013-02-20 11:27:51 -0600 | [diff] [blame] | 371 | /** |
| 372 | * Call back function registered in ccnd to get all content coming to NLSR |
| 373 | * application |
| 374 | */ |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 375 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 376 | enum ccn_upcall_res incoming_content(struct ccn_closure* selfp, |
| 377 | enum ccn_upcall_kind kind, struct ccn_upcall_info* info) |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 378 | { |
| 379 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 380 | nlsr_lock(); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 381 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 382 | switch(kind) { |
| 383 | case CCN_UPCALL_FINAL: |
| 384 | break; |
| 385 | case CCN_UPCALL_CONTENT: |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 386 | if ( nlsr->debugging ) |
| 387 | printf("Content Received for Name: "); |
| 388 | if ( nlsr->detailed_logging ) |
| 389 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Content Received for Name: "); |
| 390 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 391 | struct ccn_charbuf*c; |
| 392 | c=ccn_charbuf_create(); |
| 393 | ccn_uri_append(c,info->interest_ccnb,info->pi->offset[CCN_PI_E],0); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 394 | if ( nlsr->debugging ) |
| 395 | printf("%s\n",ccn_charbuf_as_string(c)); |
| 396 | if ( nlsr->detailed_logging ) |
| 397 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"%s\n",ccn_charbuf_as_string(c)); |
| 398 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 399 | ccn_charbuf_destroy(&c); |
| 400 | |
| 401 | process_incoming_content(selfp,info); |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 402 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 403 | break; |
| 404 | case CCN_UPCALL_INTEREST_TIMED_OUT: |
akmhoque | edb68d9 | 2013-03-05 10:18:16 -0600 | [diff] [blame] | 405 | //printf("Interest Timed Out Received for Name: "); |
| 406 | if ( nlsr->debugging ) |
| 407 | printf("Interest Timed Out Received for Name: "); |
| 408 | if ( nlsr->detailed_logging ) |
| 409 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Interest Timed Out Receiv" |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 410 | "ed for Name: "); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 411 | |
akmhoque | edb68d9 | 2013-03-05 10:18:16 -0600 | [diff] [blame] | 412 | struct ccn_charbuf*ito; |
| 413 | ito=ccn_charbuf_create(); |
| 414 | ccn_uri_append(ito,info->interest_ccnb,info->pi->offset[CCN_PI_E],0); |
| 415 | if ( nlsr->debugging ) |
| 416 | printf("%s\n",ccn_charbuf_as_string(ito)); |
| 417 | if ( nlsr->detailed_logging ) |
| 418 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"%s\n",ccn_charbuf_as_string(ito)); |
| 419 | ccn_charbuf_destroy(&ito); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 420 | |
akmhoque | edb68d9 | 2013-03-05 10:18:16 -0600 | [diff] [blame] | 421 | process_incoming_timed_out_interest(selfp,info); |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 422 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 423 | break; |
akmhoque | edb68d9 | 2013-03-05 10:18:16 -0600 | [diff] [blame] | 424 | |
| 425 | case CCN_UPCALL_CONTENT_UNVERIFIED: |
| 426 | if ( nlsr->debugging ) |
| 427 | printf("Unverified Content Received ..Waiting for verification\n"); |
| 428 | if ( nlsr->detailed_logging ) |
| 429 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Unverified Content" |
| 430 | " Received ..Waiting for verification\n"); |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 431 | //return CCN_UPCALL_RESULT_VERIFY; |
akmhoque | 4637d9d | 2013-03-08 06:52:00 -0600 | [diff] [blame] | 432 | process_incoming_content(selfp,info); |
akmhoque | edb68d9 | 2013-03-05 10:18:16 -0600 | [diff] [blame] | 433 | break; |
| 434 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 435 | default: |
| 436 | fprintf(stderr, "Unexpected response of kind %d\n", kind); |
akmhoque | edb68d9 | 2013-03-05 10:18:16 -0600 | [diff] [blame] | 437 | if ( nlsr->debugging ) |
| 438 | printf("Unexpected response of kind %d\n", kind); |
| 439 | if ( nlsr->detailed_logging ) |
| 440 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Unexpected response of " |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 441 | "kind %d\n", kind); |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 442 | break; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 443 | } |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 444 | |
| 445 | nlsr_unlock(); |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 446 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 447 | return CCN_UPCALL_RESULT_OK; |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 448 | } |
| 449 | |
akmhoque | 7ab49a3 | 2013-02-20 11:27:51 -0600 | [diff] [blame] | 450 | /** |
| 451 | * process any incoming content to NLSR from ccnd |
| 452 | */ |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 453 | |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 454 | void |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 455 | process_incoming_content(struct ccn_closure *selfp, struct ccn_upcall_info* info) |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 456 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 457 | if ( nlsr->debugging ) |
| 458 | printf("process_incoming_content called \n"); |
| 459 | if ( nlsr->detailed_logging ) |
| 460 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"process_incoming_content called \n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 461 | |
| 462 | const unsigned char *comp_ptr1; |
| 463 | size_t comp_size; |
| 464 | int res,i; |
| 465 | int nlsr_position=0; |
| 466 | int name_comps=(int)info->interest_comps->n; |
| 467 | |
| 468 | for(i=0;i<name_comps;i++) |
| 469 | { |
| 470 | res=ccn_name_comp_strcmp(info->interest_ccnb,info->interest_comps,i,"nlsr"); |
| 471 | if( res == 0) |
| 472 | { |
| 473 | nlsr_position=i; |
| 474 | break; |
| 475 | } |
| 476 | } |
| 477 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 478 | res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps, |
| 479 | nlsr_position+1,&comp_ptr1, &comp_size); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 480 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 481 | |
| 482 | if(!strcmp((char *)comp_ptr1,"info")) |
| 483 | { |
| 484 | process_incoming_content_info(selfp,info); |
| 485 | } |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 486 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 487 | } |
| 488 | |
akmhoque | 7ab49a3 | 2013-02-20 11:27:51 -0600 | [diff] [blame] | 489 | /** |
| 490 | * process any incoming "info" content to NLSR from ccnd |
| 491 | */ |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 492 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 493 | void |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 494 | process_incoming_content_info(struct ccn_closure *selfp, |
| 495 | struct ccn_upcall_info* info) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 496 | { |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 497 | if ( nlsr->debugging ) |
| 498 | printf("process_incoming_content_info called \n"); |
| 499 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 500 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"process_incoming_content_info" |
| 501 | " called \n"); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 502 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 503 | struct name_prefix *nbr=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 504 | get_nbr(nbr,selfp,info); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 505 | |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 506 | if ( nlsr->debugging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 507 | printf("Info Content Received For Neighbor: %s Length:%d\n",nbr->name, |
| 508 | nbr->length); |
akmhoque | 7b79145 | 2012-10-30 11:24:56 -0500 | [diff] [blame] | 509 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 510 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Info Content Received For Nei" |
| 511 | "ghbor: %s Length:%d\n",nbr->name,nbr->length); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 512 | |
akmhoque | fc7016f | 2013-03-08 07:17:14 -0600 | [diff] [blame] | 513 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 514 | |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 515 | if ( contain_key_name(info->content_ccnb, info->pco) == 1){ |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 516 | |
akmhoque | b795818 | 2013-03-11 12:03:54 -0500 | [diff] [blame] | 517 | int res_verify=verify_key(info->content_ccnb,info->pco,0); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 518 | |
akmhoque | b795818 | 2013-03-11 12:03:54 -0500 | [diff] [blame] | 519 | if ( res_verify != 0 ){ |
akmhoque | 1162d85 | 2013-03-15 01:07:00 -0500 | [diff] [blame] | 520 | if ( nlsr->debugging ) |
| 521 | printf("Error in verfiying keys !! :( \n"); |
akmhoque | b795818 | 2013-03-11 12:03:54 -0500 | [diff] [blame] | 522 | } |
| 523 | else{ |
akmhoque | 1162d85 | 2013-03-15 01:07:00 -0500 | [diff] [blame] | 524 | if ( nlsr->debugging ) |
| 525 | printf("Key verification is successful :)\n"); |
akmhoque | b795818 | 2013-03-11 12:03:54 -0500 | [diff] [blame] | 526 | update_adjacent_timed_out_zero_to_adl(nbr); |
| 527 | update_adjacent_status_to_adl(nbr,NBR_ACTIVE); |
| 528 | print_adjacent_from_adl(); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 529 | |
akmhoque | b795818 | 2013-03-11 12:03:54 -0500 | [diff] [blame] | 530 | if(!nlsr->is_build_adj_lsa_sheduled){ |
| 531 | if ( nlsr->debugging ) |
| 532 | printf("Scheduling Build and Install Adj LSA...\n"); |
| 533 | if ( nlsr->detailed_logging ) |
| 534 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Scheduling" |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 535 | "Build and Install Adj LSA...\n"); |
akmhoque | b795818 | 2013-03-11 12:03:54 -0500 | [diff] [blame] | 536 | nlsr->event_build_adj_lsa = ccn_schedule_event( |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 537 | nlsr->sched, 100000, |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 538 | &build_and_install_adj_lsa, NULL, 0); |
akmhoque | b795818 | 2013-03-11 12:03:54 -0500 | [diff] [blame] | 539 | nlsr->is_build_adj_lsa_sheduled=1; |
| 540 | } |
| 541 | else{ |
| 542 | if ( nlsr->debugging ) |
| 543 | printf("Build and Install Adj LSA already scheduled\n"); |
| 544 | if ( nlsr->detailed_logging ) |
| 545 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Build and Install Adj LSA" |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 546 | " already scheduled\n"); |
akmhoque | b795818 | 2013-03-11 12:03:54 -0500 | [diff] [blame] | 547 | } |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 548 | |
akmhoque | b795818 | 2013-03-11 12:03:54 -0500 | [diff] [blame] | 549 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 550 | } |
akmhoque | fc7016f | 2013-03-08 07:17:14 -0600 | [diff] [blame] | 551 | /* |
akmhoque | 10c9a21 | 2013-03-08 07:05:18 -0600 | [diff] [blame] | 552 | update_adjacent_timed_out_zero_to_adl(nbr); |
| 553 | update_adjacent_status_to_adl(nbr,NBR_ACTIVE); |
| 554 | print_adjacent_from_adl(); |
| 555 | |
| 556 | if(!nlsr->is_build_adj_lsa_sheduled){ |
| 557 | if ( nlsr->debugging ) |
| 558 | printf("Scheduling Build and Install Adj LSA...\n"); |
| 559 | if ( nlsr->detailed_logging ) |
| 560 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Scheduling" |
| 561 | "Build and Install Adj LSA...\n"); |
| 562 | nlsr->event_build_adj_lsa = ccn_schedule_event( |
| 563 | nlsr->sched, 100000, |
| 564 | &build_and_install_adj_lsa, NULL, 0); |
| 565 | nlsr->is_build_adj_lsa_sheduled=1; |
| 566 | } |
| 567 | else{ |
| 568 | if ( nlsr->debugging ) |
| 569 | printf("Build and Install Adj LSA already scheduled\n"); |
| 570 | if ( nlsr->detailed_logging ) |
| 571 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Build and Install Adj LSA" |
| 572 | " already scheduled\n"); |
| 573 | } |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 574 | |
akmhoque | fc7016f | 2013-03-08 07:17:14 -0600 | [diff] [blame] | 575 | */ |
akmhoque | 6e2ba84 | 2013-03-05 19:35:26 -0600 | [diff] [blame] | 576 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 577 | free(nbr); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 578 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 579 | |
| 580 | } |
| 581 | |
akmhoque | 7ab49a3 | 2013-02-20 11:27:51 -0600 | [diff] [blame] | 582 | /** |
| 583 | * process any incoming interest timed out content to NLSR from ccnd |
| 584 | */ |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 585 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 586 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 587 | void |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 588 | process_incoming_timed_out_interest(struct ccn_closure* selfp, |
| 589 | struct ccn_upcall_info* info) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 590 | { |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 591 | |
| 592 | |
| 593 | if ( nlsr->debugging ) |
| 594 | printf("process_incoming_timed_out_interest called \n"); |
| 595 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 596 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"process_incoming_timed_out_int" |
| 597 | "erest called \n"); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 598 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 599 | int res,i; |
| 600 | int nlsr_position=0; |
| 601 | int name_comps=(int)info->interest_comps->n; |
| 602 | |
| 603 | for(i=0;i<name_comps;i++) |
| 604 | { |
| 605 | res=ccn_name_comp_strcmp(info->interest_ccnb,info->interest_comps,i,"nlsr"); |
| 606 | if( res == 0) |
| 607 | { |
| 608 | nlsr_position=i; |
| 609 | break; |
| 610 | } |
| 611 | } |
| 612 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 613 | if(ccn_name_comp_strcmp(info->interest_ccnb,info->interest_comps, |
| 614 | nlsr_position+1,"info") == 0) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 615 | { |
| 616 | process_incoming_timed_out_interest_info(selfp,info); |
| 617 | } |
| 618 | } |
| 619 | |
akmhoque | 7ab49a3 | 2013-02-20 11:27:51 -0600 | [diff] [blame] | 620 | /** |
| 621 | * process any incoming "info" interest timed out content to NLSR from ccnd |
| 622 | */ |
| 623 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 624 | void |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 625 | process_incoming_timed_out_interest_info(struct ccn_closure* selfp, struct |
| 626 | ccn_upcall_info* info) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 627 | { |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 628 | |
| 629 | if ( nlsr->debugging ) |
| 630 | printf("process_incoming_timed_out_interest_info called \n"); |
| 631 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 632 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"process_incoming_timed_out_int" |
| 633 | "erest_info called \n"); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 634 | |
| 635 | struct name_prefix *nbr=(struct name_prefix *)malloc(sizeof(struct name_prefix )); |
| 636 | get_nbr(nbr,selfp,info); |
| 637 | |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 638 | if ( nlsr->debugging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 639 | printf("Info Interest Timed Out for for Neighbor: %s Length:%d\n", |
| 640 | nbr->name,nbr->length); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 641 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 642 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Info Interest Timed Out for" |
| 643 | " Neighbor: %s Length:%d\n",nbr->name,nbr->length); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 644 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 645 | |
| 646 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 647 | update_adjacent_timed_out_to_adl(nbr,1); |
| 648 | print_adjacent_from_adl(); |
| 649 | int timed_out=get_timed_out_number(nbr); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 650 | |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 651 | if ( nlsr->debugging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 652 | printf("Neighbor: %s Info Interest Timed Out: %d times\n",nbr->name, |
| 653 | timed_out); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 654 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 655 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Neighbor: %s Info Interest " |
| 656 | "Timed Out: %d times\n",nbr->name,timed_out); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 657 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 658 | |
| 659 | if(timed_out<nlsr->interest_retry && timed_out>0) // use configured variables |
| 660 | { |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 661 | send_info_interest_to_neighbor(nbr); |
| 662 | } |
| 663 | else |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 664 | { |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 665 | update_adjacent_status_to_adl(nbr,NBR_DOWN); |
| 666 | if(!nlsr->is_build_adj_lsa_sheduled) |
| 667 | { |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 668 | nlsr->event_build_adj_lsa = ccn_schedule_event(nlsr->sched, 1000, |
| 669 | &build_and_install_adj_lsa, NULL, 0); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 670 | nlsr->is_build_adj_lsa_sheduled=1; |
| 671 | } |
| 672 | } |
| 673 | |
akmhoque | 284056b | 2013-03-15 01:20:16 -0500 | [diff] [blame^] | 674 | if ( nbr->name != NULL ) |
| 675 | free(nbr->name); |
| 676 | if ( nbr != NULL ) |
| 677 | free(nbr); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 678 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 679 | |
| 680 | } |
| 681 | |
akmhoque | 7ab49a3 | 2013-02-20 11:27:51 -0600 | [diff] [blame] | 682 | /** |
| 683 | * send "info" interest to each and every neighbor in ADL and also schedule for |
| 684 | * itself for periodical sending of "info" interest |
| 685 | */ |
akmhoque | 29c1db5 | 2012-09-07 14:47:43 -0500 | [diff] [blame] | 686 | |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 687 | int |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 688 | send_info_interest(struct ccn_schedule *sched, void *clienth, |
| 689 | struct ccn_scheduled_event *ev, int flags) |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 690 | { |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 691 | if(flags == CCN_SCHEDULE_CANCEL) |
| 692 | { |
| 693 | return -1; |
| 694 | } |
| 695 | |
| 696 | nlsr_lock(); |
| 697 | |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 698 | if ( nlsr->debugging ) |
| 699 | printf("send_info_interest called \n"); |
| 700 | if ( nlsr->detailed_logging ) |
| 701 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"send_info_interest called \n"); |
| 702 | |
| 703 | if ( nlsr->debugging ) |
| 704 | printf("\n"); |
| 705 | if ( nlsr->detailed_logging ) |
| 706 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"\n"); |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 707 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 708 | int adl_element,i; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 709 | struct ndn_neighbor *nbr; |
| 710 | |
| 711 | struct hashtb_enumerator ee; |
| 712 | struct hashtb_enumerator *e = ⅇ |
| 713 | |
| 714 | hashtb_start(nlsr->adl, e); |
| 715 | adl_element=hashtb_n(nlsr->adl); |
| 716 | |
| 717 | for(i=0;i<adl_element;i++) |
| 718 | { |
| 719 | nbr=e->data; |
| 720 | send_info_interest_to_neighbor(nbr->neighbor); |
| 721 | hashtb_next(e); |
| 722 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 723 | hashtb_end(e); |
| 724 | |
akmhoque | ffacaa8 | 2012-09-13 17:48:30 -0500 | [diff] [blame] | 725 | nlsr_unlock(); |
| 726 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 727 | nlsr->event = ccn_schedule_event(nlsr->sched, 60000000, &send_info_interest, |
| 728 | NULL, 0); |
akmhoque | 9fa58a8 | 2012-10-05 07:56:02 -0500 | [diff] [blame] | 729 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 730 | return 0; |
| 731 | } |
| 732 | |
akmhoque | 7ab49a3 | 2013-02-20 11:27:51 -0600 | [diff] [blame] | 733 | |
| 734 | /** |
| 735 | * send "info" interest neighbor nbr |
| 736 | * |
| 737 | */ |
| 738 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 739 | void |
| 740 | send_info_interest_to_neighbor(struct name_prefix *nbr) |
| 741 | { |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 742 | |
| 743 | if ( nlsr->debugging ) |
| 744 | printf("send_info_interest_to_neighbor called \n"); |
| 745 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 746 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"send_info_interest_to_neighbor" |
| 747 | " called \n"); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 748 | |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 749 | |
| 750 | int res; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 751 | char info_str[5]; |
| 752 | char nlsr_str[5]; |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 753 | |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 754 | memset(&nlsr_str,0,5); |
| 755 | sprintf(nlsr_str,"nlsr"); |
| 756 | memset(&info_str,0,5); |
| 757 | sprintf(info_str,"info"); |
| 758 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 759 | |
| 760 | struct ccn_charbuf *name; |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 761 | name=ccn_charbuf_create(); |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 762 | |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 763 | char *int_name=(char *)malloc(strlen(nbr->name)+1+strlen(nlsr_str)+1+ |
| 764 | strlen(info_str)+strlen(nlsr->router_name)+1); |
| 765 | memset(int_name,0,strlen(nbr->name)+1+strlen(nlsr_str)+1+strlen(info_str)+ |
| 766 | strlen(nlsr->router_name)+1); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 767 | memcpy(int_name+strlen(int_name),nbr->name,strlen(nbr->name)); |
| 768 | memcpy(int_name+strlen(int_name),"/",1); |
| 769 | memcpy(int_name+strlen(int_name),nlsr_str,strlen(nlsr_str)); |
| 770 | memcpy(int_name+strlen(int_name),"/",1); |
| 771 | memcpy(int_name+strlen(int_name),info_str,strlen(info_str)); |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 772 | memcpy(int_name+strlen(int_name),nlsr->router_name,strlen(nlsr->router_name)); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 773 | |
| 774 | |
| 775 | res=ccn_name_from_uri(name,int_name); |
| 776 | if ( res >=0 ) |
| 777 | { |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 778 | /* adding InterestLifeTime and InterestScope filter */ |
| 779 | |
| 780 | struct ccn_charbuf *templ; |
| 781 | templ = ccn_charbuf_create(); |
| 782 | |
| 783 | ccn_charbuf_append_tt(templ, CCN_DTAG_Interest, CCN_DTAG); |
| 784 | ccn_charbuf_append_tt(templ, CCN_DTAG_Name, CCN_DTAG); |
| 785 | ccn_charbuf_append_closer(templ); /* </Name> */ |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 786 | ccn_charbuf_append_tt(templ, CCN_DTAG_Scope, CCN_DTAG); |
| 787 | ccn_charbuf_append_tt(templ, 1, CCN_UDATA); |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame] | 788 | /* Adding InterestLifeTime and InterestScope filter done */ |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 789 | ccn_charbuf_append(templ, "2", 1); //scope of interest: 2 |
| 790 | //(not further than next host) |
akmhoque | 03004e6 | 2012-09-06 01:12:28 -0500 | [diff] [blame] | 791 | ccn_charbuf_append_closer(templ); /* </Scope> */ |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 792 | |
| 793 | appendLifetime(templ,nlsr->interest_resend_time); |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame] | 794 | unsigned int face_id=get_next_hop_face_from_adl(nbr->name); |
| 795 | ccnb_tagged_putf(templ, CCN_DTAG_FaceID, "%u", face_id); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 796 | ccn_charbuf_append_closer(templ); /* </Interest> */ |
akmhoque | b77b95f | 2013-02-08 12:28:47 -0600 | [diff] [blame] | 797 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 798 | |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 799 | if ( nlsr->debugging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 800 | printf("Sending info interest on name prefix : %s through Face:%u\n" |
| 801 | ,int_name,face_id); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 802 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 803 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Sending info interest on" |
| 804 | "name prefix : %s through Face:%u\n",int_name,face_id); |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 805 | |
| 806 | res=ccn_express_interest(nlsr->ccn,name,&(nlsr->in_content),templ); |
| 807 | |
| 808 | if ( res >= 0 ) |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 809 | { |
| 810 | if ( nlsr->debugging ) |
| 811 | printf("Info interest sending Successfull .... \n"); |
| 812 | if ( nlsr->detailed_logging ) |
akmhoque | 3d319d4 | 2013-02-20 11:08:32 -0600 | [diff] [blame] | 813 | writeLogg(__FILE__,__FUNCTION__,__LINE__,"Info" |
| 814 | "interest sending Successfull .... \n"); |
akmhoque | 3171d65 | 2012-11-13 11:44:33 -0600 | [diff] [blame] | 815 | } |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 816 | ccn_charbuf_destroy(&templ); |
| 817 | } |
akmhoque | 7adb277 | 2013-03-05 16:30:59 -0600 | [diff] [blame] | 818 | |
akmhoque | 53f6422 | 2012-09-05 13:57:51 -0500 | [diff] [blame] | 819 | ccn_charbuf_destroy(&name); |
| 820 | free(int_name); |
akmhoque | c06dcf1 | 2013-02-20 08:13:37 -0600 | [diff] [blame] | 821 | } |