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> |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 19 | #include <ccn/bloom.h> |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 20 | |
| 21 | #include "nlsr.h" |
| 22 | #include "nlsr_ndn.h" |
| 23 | #include "utility.h" |
| 24 | |
| 25 | enum ccn_upcall_res |
| 26 | incoming_interest(struct ccn_closure *selfp, |
| 27 | enum ccn_upcall_kind kind, struct ccn_upcall_info *info) |
| 28 | { |
| 29 | |
| 30 | switch (kind) { |
| 31 | case CCN_UPCALL_FINAL: |
| 32 | break; |
| 33 | case CCN_UPCALL_INTEREST: |
| 34 | // printing the name prefix for which it received interest |
| 35 | printf("Interest Received for name: "); |
| 36 | struct ccn_charbuf*c; |
| 37 | c=ccn_charbuf_create(); |
| 38 | ccn_uri_append(c,info->interest_ccnb,info->pi->offset[CCN_PI_E_Name]-info->pi->offset[CCN_PI_B_Name],0); |
| 39 | //ccn_name_chop(c,NULL,-1); |
| 40 | printf("%s\n",ccn_charbuf_as_string(c)); |
| 41 | ccn_charbuf_destroy(&c); |
| 42 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 43 | process_incoming_interest(selfp, info); |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 44 | |
| 45 | /* |
| 46 | struct ccn_charbuf *data=ccn_charbuf_create(); |
| 47 | struct ccn_charbuf *name=ccn_charbuf_create(); |
| 48 | struct ccn_signing_params sp=CCN_SIGNING_PARAMS_INIT; |
| 49 | |
| 50 | ccn_charbuf_append(name, info->interest_ccnb + info->pi->offset[CCN_PI_B_Name], |
| 51 | info->pi->offset[CCN_PI_E_Name] - info->pi->offset[CCN_PI_B_Name]); |
| 52 | |
| 53 | sp.template_ccnb=ccn_charbuf_create(); |
| 54 | ccn_charbuf_append_tt(sp.template_ccnb,CCN_DTAG_SignedInfo, CCN_DTAG); |
| 55 | ccnb_tagged_putf(sp.template_ccnb, CCN_DTAG_FreshnessSeconds, "%ld", 1010); |
| 56 | sp.sp_flags |= CCN_SP_TEMPL_FRESHNESS; |
| 57 | ccn_charbuf_append_closer(sp.template_ccnb); |
| 58 | |
| 59 | res= ccn_sign_content(ospfndn->ccn, data, name, &sp, "hello", strlen("hello")); |
| 60 | res=ccn_put(ospfndn->ccn,data->buf,data->length); |
| 61 | ccn_charbuf_destroy(&data); |
| 62 | |
| 63 | */ |
| 64 | break; |
| 65 | |
| 66 | default: |
| 67 | break; |
| 68 | } |
| 69 | |
| 70 | return CCN_UPCALL_RESULT_OK; |
| 71 | } |
| 72 | |
| 73 | |
| 74 | enum ccn_upcall_res incoming_content(struct ccn_closure* selfp, |
| 75 | enum ccn_upcall_kind kind, struct ccn_upcall_info* info) |
| 76 | { |
| 77 | |
| 78 | |
| 79 | switch(kind) { |
| 80 | case CCN_UPCALL_FINAL: |
| 81 | break; |
| 82 | case CCN_UPCALL_CONTENT: |
| 83 | printf("Content Received for name: "); |
| 84 | struct ccn_charbuf*c; |
| 85 | c=ccn_charbuf_create(); |
| 86 | ccn_uri_append(c,info->interest_ccnb,info->pi->offset[CCN_PI_E],0); |
| 87 | printf("%s\n",ccn_charbuf_as_string(c)); |
| 88 | ccn_charbuf_destroy(&c); |
| 89 | |
akmhoque | cb01775 | 2012-08-16 11:03:45 -0500 | [diff] [blame] | 90 | printf("Content Received for name: "); |
| 91 | struct ccn_charbuf*cc; |
| 92 | cc=ccn_charbuf_create(); |
| 93 | ccn_uri_append(cc,info->content_ccnb,info->pco->offset[CCN_PCO_E],0); |
| 94 | printf("%s\n",ccn_charbuf_as_string(cc)); |
| 95 | ccn_charbuf_destroy(&cc); |
| 96 | |
| 97 | process_incoming_content(selfp, info); |
| 98 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 99 | break; |
| 100 | case CCN_UPCALL_INTEREST_TIMED_OUT: |
akmhoque | cb01775 | 2012-08-16 11:03:45 -0500 | [diff] [blame] | 101 | printf("Interest timed out \n"); |
| 102 | struct ccn_charbuf*ic; |
| 103 | ic=ccn_charbuf_create(); |
| 104 | ccn_uri_append(ic,info->interest_ccnb,info->pi->offset[CCN_PI_E_Name],0); |
| 105 | printf("%s\n",ccn_charbuf_as_string(ic)); |
| 106 | ccn_charbuf_destroy(&ic); |
| 107 | process_incoming_timed_out_interest(selfp,info); |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 108 | |
akmhoque | 59980a5 | 2012-08-09 12:36:09 -0500 | [diff] [blame] | 109 | break; |
| 110 | default: |
| 111 | fprintf(stderr, "Unexpected response of kind %d\n", kind); |
| 112 | return CCN_UPCALL_RESULT_ERR; |
| 113 | } |
| 114 | |
| 115 | return CCN_UPCALL_RESULT_OK; |
| 116 | } |
akmhoque | 61fe447 | 2012-08-10 10:13:34 -0500 | [diff] [blame] | 117 | |
akmhoque | cb01775 | 2012-08-16 11:03:45 -0500 | [diff] [blame] | 118 | |
| 119 | void |
| 120 | process_incoming_content(struct ccn_closure* selfp, struct ccn_upcall_info* info) |
| 121 | { |
| 122 | printf("process_incoming_content called \n"); |
| 123 | |
| 124 | } |
| 125 | |
| 126 | |
| 127 | void |
| 128 | process_incoming_timed_out_interest(struct ccn_closure* selfp, struct ccn_upcall_info* info) |
| 129 | { |
| 130 | printf("process_incoming_timed_out_interest called \n"); |
| 131 | |
| 132 | } |
| 133 | |
| 134 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 135 | void |
| 136 | process_incoming_interest(struct ccn_closure *selfp, struct ccn_upcall_info *info) |
| 137 | { |
| 138 | printf("process_incoming_interest called \n"); |
| 139 | |
| 140 | |
| 141 | struct ccn_charbuf*c; |
| 142 | c=ccn_charbuf_create(); |
| 143 | ccn_uri_append(c,info->interest_ccnb,info->pi->offset[CCN_PI_E_Name]-info->pi->offset[CCN_PI_B_Name],0); |
| 144 | printf("%s\n",ccn_charbuf_as_string(c)); |
| 145 | ccn_charbuf_destroy(&c); |
| 146 | |
| 147 | const unsigned char *comp_ptr1; |
| 148 | size_t comp_size; |
| 149 | int res,i; |
| 150 | int nlsr_position=0; |
| 151 | int name_comps=(int)info->interest_comps->n; |
| 152 | |
| 153 | for(i=0;i<name_comps;i++) |
| 154 | { |
| 155 | res=ccn_name_comp_strcmp(info->interest_ccnb,info->interest_comps,i,"nlsr"); |
| 156 | if( res == 0) |
| 157 | { |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 158 | nlsr_position=i; |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 159 | break; |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps,nlsr_position+1,&comp_ptr1, &comp_size); |
| 164 | |
| 165 | |
| 166 | printf("Det= %s \n",comp_ptr1); |
| 167 | |
| 168 | if(!strcmp((char *)comp_ptr1,"lsdb")) |
| 169 | { |
akmhoque | bf1aa83 | 2012-08-13 13:26:59 -0500 | [diff] [blame] | 170 | process_incoming_interest_lsdb(selfp,info); |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 171 | } |
akmhoque | bf1aa83 | 2012-08-13 13:26:59 -0500 | [diff] [blame] | 172 | |
| 173 | |
| 174 | } |
| 175 | |
| 176 | |
| 177 | void |
| 178 | process_incoming_interest_lsdb(struct ccn_closure *selfp, struct ccn_upcall_info *info) |
| 179 | { |
| 180 | printf("process_incoming_interest_lsdb called \n"); |
| 181 | |
akmhoque | cb01775 | 2012-08-16 11:03:45 -0500 | [diff] [blame] | 182 | int l, res; |
akmhoque | fce8cfc | 2012-08-14 14:00:33 -0500 | [diff] [blame] | 183 | const unsigned char *exclbase; |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 184 | size_t size; |
akmhoque | fce8cfc | 2012-08-14 14:00:33 -0500 | [diff] [blame] | 185 | struct ccn_buf_decoder decoder; |
| 186 | struct ccn_buf_decoder *d; |
| 187 | const unsigned char *comp; |
| 188 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 189 | |
| 190 | l = info->pi->offset[CCN_PI_E_Exclude] - info->pi->offset[CCN_PI_B_Exclude]; |
| 191 | if (l > 0) |
| 192 | { |
| 193 | comp = NULL; |
| 194 | size = 0; |
| 195 | exclbase = info->interest_ccnb + info->pi->offset[CCN_PI_B_Exclude]; |
| 196 | d = ccn_buf_decoder_start(&decoder, exclbase, l); |
| 197 | if (ccn_buf_match_dtag(d, CCN_DTAG_Exclude)) |
| 198 | { |
| 199 | ccn_buf_advance(d); |
| 200 | if (ccn_buf_match_dtag(d, CCN_DTAG_Any)) |
| 201 | ccn_buf_advance_past_element(d); |
| 202 | if (ccn_buf_match_dtag(d, CCN_DTAG_Component)) |
| 203 | { |
| 204 | ccn_buf_advance(d); |
| 205 | ccn_buf_match_blob(d, &comp, &size); |
akmhoque | c928669 | 2012-08-16 09:57:58 -0500 | [diff] [blame] | 206 | ccn_buf_check_close(d); |
| 207 | |
| 208 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 209 | } |
| 210 | ccn_buf_check_close(d); |
| 211 | } |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 212 | //if (d->decoder.state < 0) |
| 213 | //printf("Parse Failed\n"); |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 214 | if (comp != NULL) |
akmhoque | 37e3adf | 2012-08-14 15:52:50 -0500 | [diff] [blame] | 215 | printf("Number in Exclusion Filter is %s\n",comp); |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 216 | |
| 217 | /* Now comp points to the start of your potential number, and size is its length */ |
| 218 | } |
| 219 | |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 220 | int dbcmp=strncmp(nlsr->lsdb->version,(char *)comp,16); |
akmhoque | 898d4aa | 2012-08-16 10:26:15 -0500 | [diff] [blame] | 221 | |
| 222 | printf (" dbcmp = %d \n",dbcmp); |
| 223 | |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 224 | if(dbcmp > 0) |
akmhoque | cb01775 | 2012-08-16 11:03:45 -0500 | [diff] [blame] | 225 | { |
akmhoque | 898d4aa | 2012-08-16 10:26:15 -0500 | [diff] [blame] | 226 | printf("Has Updated database (Older: %s New: %s)\n",comp,nlsr->lsdb->version); |
akmhoque | cb01775 | 2012-08-16 11:03:45 -0500 | [diff] [blame] | 227 | } |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 228 | else |
akmhoque | cb01775 | 2012-08-16 11:03:45 -0500 | [diff] [blame] | 229 | { |
akmhoque | 898d4aa | 2012-08-16 10:26:15 -0500 | [diff] [blame] | 230 | printf("Data base is not updated than the older one (Older: %s New: %s)\n",comp,nlsr->lsdb->version); |
akmhoque | cb01775 | 2012-08-16 11:03:45 -0500 | [diff] [blame] | 231 | printf("Sending NACK Content back.....\n"); |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 232 | |
akmhoque | cb01775 | 2012-08-16 11:03:45 -0500 | [diff] [blame] | 233 | struct ccn_charbuf *data=ccn_charbuf_create(); |
| 234 | struct ccn_charbuf *name=ccn_charbuf_create(); |
| 235 | struct ccn_signing_params sp=CCN_SIGNING_PARAMS_INIT; |
| 236 | |
| 237 | ccn_charbuf_append(name, info->interest_ccnb + info->pi->offset[CCN_PI_B_Name],info->pi->offset[CCN_PI_E_Name] - info->pi->offset[CCN_PI_B_Name]); |
| 238 | ccn_name_append_str(name,nlsr->lsdb->version); |
| 239 | |
| 240 | sp.template_ccnb=ccn_charbuf_create(); |
| 241 | ccn_charbuf_append_tt(sp.template_ccnb,CCN_DTAG_SignedInfo, CCN_DTAG); |
| 242 | ccnb_tagged_putf(sp.template_ccnb, CCN_DTAG_FreshnessSeconds, "%ld", 10); |
| 243 | sp.sp_flags |= CCN_SP_TEMPL_FRESHNESS; |
| 244 | ccn_charbuf_append_closer(sp.template_ccnb); |
| 245 | |
| 246 | res= ccn_sign_content(nlsr->ccn, data, name, &sp, "NACK", strlen("NACK")); |
| 247 | res=ccn_put(nlsr->ccn,data->buf,data->length); |
akmhoque | bf11b1d | 2012-08-16 11:11:17 -0500 | [diff] [blame^] | 248 | |
| 249 | if(res >= 0) |
| 250 | printf("Sending NACK Content is successful \n"); |
| 251 | |
akmhoque | cb01775 | 2012-08-16 11:03:45 -0500 | [diff] [blame] | 252 | ccn_charbuf_destroy(&data); |
| 253 | ccn_charbuf_destroy(&sp.template_ccnb); |
| 254 | |
| 255 | } |
| 256 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | int |
| 260 | send_lsdb_interest(struct ccn_schedule *sched, void *clienth, |
| 261 | struct ccn_scheduled_event *ev, int flags) |
| 262 | { |
| 263 | |
| 264 | struct ccn_charbuf *name; |
| 265 | long int rnum; |
| 266 | char rnumstr[20]; |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 267 | char lsdb_str[5]; |
| 268 | char nlsr_str[5]; |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 269 | |
| 270 | int res,i; |
| 271 | int adl_element; |
| 272 | |
| 273 | rnum=random(); |
| 274 | memset(&rnumstr,0,20); |
| 275 | sprintf(rnumstr,"%ld",rnum); |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 276 | memset(&nlsr_str,0,5); |
| 277 | sprintf(nlsr_str,"nlsr"); |
| 278 | memset(&lsdb_str,0,5); |
| 279 | sprintf(lsdb_str,"lsdb"); |
| 280 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 281 | |
| 282 | struct ndn_neighbor *nbr; |
| 283 | |
| 284 | struct hashtb_enumerator ee; |
| 285 | struct hashtb_enumerator *e = ⅇ |
| 286 | |
| 287 | hashtb_start(nlsr->adl, e); |
| 288 | adl_element=hashtb_n(nlsr->adl); |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 289 | //int mynumber=15; |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 290 | |
| 291 | for(i=0;i<adl_element;i++) |
| 292 | { |
| 293 | nbr=e->data; |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 294 | printf("Sending interest for name prefix:%s/%s/%s/%s\n",nbr->neighbor->name,nlsr_str,lsdb_str,rnumstr); |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 295 | name=ccn_charbuf_create(); |
| 296 | res=ccn_name_from_uri(name,nbr->neighbor->name); |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 297 | ccn_name_append_str(name,nlsr_str); |
| 298 | ccn_name_append_str(name,lsdb_str); |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 299 | ccn_name_append_str(name,rnumstr); |
| 300 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 301 | /* adding Exclusion filter */ |
akmhoque | bf1aa83 | 2012-08-13 13:26:59 -0500 | [diff] [blame] | 302 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 303 | struct ccn_charbuf *templ; |
| 304 | templ = ccn_charbuf_create(); |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 305 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 306 | struct ccn_charbuf *c; |
| 307 | c = ccn_charbuf_create(); |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 308 | |
| 309 | |
| 310 | ccn_charbuf_append_tt(templ, CCN_DTAG_Interest, CCN_DTAG); |
| 311 | ccn_charbuf_append_tt(templ, CCN_DTAG_Name, CCN_DTAG); |
| 312 | ccn_charbuf_append_closer(templ); /* </Name> */ |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 313 | ccn_charbuf_append_tt(templ, CCN_DTAG_Exclude, CCN_DTAG); |
| 314 | ccnb_tagged_putf(templ, CCN_DTAG_Any, ""); |
| 315 | ccn_charbuf_reset(c); |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 316 | //ccn_charbuf_putf(c, "%u", (unsigned)mynumber); |
| 317 | ccn_charbuf_putf(c, "%s", nbr->last_lsdb_version); |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 318 | ccnb_append_tagged_blob(templ, CCN_DTAG_Component, c->buf, c->length); |
| 319 | ccn_charbuf_append_closer(templ); /* </Exclude> */ |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 320 | ccn_charbuf_append_closer(templ); /* </Interest> */ |
akmhoque | 37e3adf | 2012-08-14 15:52:50 -0500 | [diff] [blame] | 321 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 322 | |
| 323 | /* Adding Exclusion filter done */ |
| 324 | |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 325 | res=ccn_express_interest(nlsr->ccn,name,&(nlsr->in_content),templ); |
| 326 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 327 | if ( res >= 0 ) |
| 328 | printf("Interest sending Successfull .... \n"); |
akmhoque | 37e3adf | 2012-08-14 15:52:50 -0500 | [diff] [blame] | 329 | ccn_charbuf_destroy(&c); |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 330 | ccn_charbuf_destroy(&templ); |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 331 | ccn_charbuf_destroy(&name); |
| 332 | |
| 333 | hashtb_next(e); |
| 334 | } |
| 335 | |
| 336 | hashtb_end(e); |
| 337 | |
akmhoque | bf11b1d | 2012-08-16 11:11:17 -0500 | [diff] [blame^] | 338 | nlsr->event_send_lsdb_interest = ccn_schedule_event(nlsr->sched, 60000000, &send_lsdb_interest, NULL, 0); |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 339 | |
| 340 | return 0; |
| 341 | |
| 342 | } |
| 343 | |