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 | |
| 90 | //process_incoming_content(selfp, info); |
| 91 | break; |
| 92 | case CCN_UPCALL_INTEREST_TIMED_OUT: |
| 93 | /* printf("Interest timed out \n"); |
| 94 | |
| 95 | const unsigned char *comp_ptr; |
| 96 | size_t comp_size; |
| 97 | int res; |
| 98 | |
| 99 | res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps,2,&comp_ptr, &comp_size); |
| 100 | |
| 101 | printf("Parsed Interest: %s size: %d Size of name prefix: %d\n",comp_ptr,(int)comp_size,(int)info->interest_comps->n); |
| 102 | */ |
| 103 | |
| 104 | //process_timed_out_interest(selfp,info); |
| 105 | break; |
| 106 | default: |
| 107 | fprintf(stderr, "Unexpected response of kind %d\n", kind); |
| 108 | return CCN_UPCALL_RESULT_ERR; |
| 109 | } |
| 110 | |
| 111 | return CCN_UPCALL_RESULT_OK; |
| 112 | } |
akmhoque | 61fe447 | 2012-08-10 10:13:34 -0500 | [diff] [blame] | 113 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 114 | void |
| 115 | process_incoming_interest(struct ccn_closure *selfp, struct ccn_upcall_info *info) |
| 116 | { |
| 117 | printf("process_incoming_interest called \n"); |
| 118 | |
| 119 | |
| 120 | struct ccn_charbuf*c; |
| 121 | c=ccn_charbuf_create(); |
| 122 | ccn_uri_append(c,info->interest_ccnb,info->pi->offset[CCN_PI_E_Name]-info->pi->offset[CCN_PI_B_Name],0); |
| 123 | printf("%s\n",ccn_charbuf_as_string(c)); |
| 124 | ccn_charbuf_destroy(&c); |
| 125 | |
| 126 | const unsigned char *comp_ptr1; |
| 127 | size_t comp_size; |
| 128 | int res,i; |
| 129 | int nlsr_position=0; |
| 130 | int name_comps=(int)info->interest_comps->n; |
| 131 | |
| 132 | for(i=0;i<name_comps;i++) |
| 133 | { |
| 134 | res=ccn_name_comp_strcmp(info->interest_ccnb,info->interest_comps,i,"nlsr"); |
| 135 | if( res == 0) |
| 136 | { |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 137 | nlsr_position=i; |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 138 | break; |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps,nlsr_position+1,&comp_ptr1, &comp_size); |
| 143 | |
| 144 | |
| 145 | printf("Det= %s \n",comp_ptr1); |
| 146 | |
| 147 | if(!strcmp((char *)comp_ptr1,"lsdb")) |
| 148 | { |
akmhoque | bf1aa83 | 2012-08-13 13:26:59 -0500 | [diff] [blame] | 149 | process_incoming_interest_lsdb(selfp,info); |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 150 | } |
akmhoque | bf1aa83 | 2012-08-13 13:26:59 -0500 | [diff] [blame] | 151 | |
| 152 | |
| 153 | } |
| 154 | |
| 155 | |
| 156 | void |
| 157 | process_incoming_interest_lsdb(struct ccn_closure *selfp, struct ccn_upcall_info *info) |
| 158 | { |
| 159 | printf("process_incoming_interest_lsdb called \n"); |
| 160 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 161 | int l; |
akmhoque | fce8cfc | 2012-08-14 14:00:33 -0500 | [diff] [blame] | 162 | const unsigned char *exclbase; |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 163 | size_t size; |
akmhoque | fce8cfc | 2012-08-14 14:00:33 -0500 | [diff] [blame] | 164 | struct ccn_buf_decoder decoder; |
| 165 | struct ccn_buf_decoder *d; |
| 166 | const unsigned char *comp; |
| 167 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 168 | |
| 169 | l = info->pi->offset[CCN_PI_E_Exclude] - info->pi->offset[CCN_PI_B_Exclude]; |
| 170 | if (l > 0) |
| 171 | { |
| 172 | comp = NULL; |
| 173 | size = 0; |
| 174 | exclbase = info->interest_ccnb + info->pi->offset[CCN_PI_B_Exclude]; |
| 175 | d = ccn_buf_decoder_start(&decoder, exclbase, l); |
| 176 | if (ccn_buf_match_dtag(d, CCN_DTAG_Exclude)) |
| 177 | { |
| 178 | ccn_buf_advance(d); |
| 179 | if (ccn_buf_match_dtag(d, CCN_DTAG_Any)) |
| 180 | ccn_buf_advance_past_element(d); |
| 181 | if (ccn_buf_match_dtag(d, CCN_DTAG_Component)) |
| 182 | { |
| 183 | ccn_buf_advance(d); |
| 184 | ccn_buf_match_blob(d, &comp, &size); |
akmhoque | c928669 | 2012-08-16 09:57:58 -0500 | [diff] [blame] | 185 | ccn_buf_check_close(d); |
| 186 | |
| 187 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 188 | } |
| 189 | ccn_buf_check_close(d); |
| 190 | } |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 191 | //if (d->decoder.state < 0) |
| 192 | //printf("Parse Failed\n"); |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 193 | if (comp != NULL) |
akmhoque | 37e3adf | 2012-08-14 15:52:50 -0500 | [diff] [blame] | 194 | printf("Number in Exclusion Filter is %s\n",comp); |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 195 | |
| 196 | /* Now comp points to the start of your potential number, and size is its length */ |
| 197 | } |
| 198 | |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 199 | int dbcmp=strncmp(nlsr->lsdb->version,(char *)comp,16); |
akmhoque | 898d4aa | 2012-08-16 10:26:15 -0500 | [diff] [blame^] | 200 | |
| 201 | printf (" dbcmp = %d \n",dbcmp); |
| 202 | |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 203 | if(dbcmp > 0) |
akmhoque | 898d4aa | 2012-08-16 10:26:15 -0500 | [diff] [blame^] | 204 | printf("Has Updated database (Older: %s New: %s)\n",comp,nlsr->lsdb->version); |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 205 | else |
akmhoque | 898d4aa | 2012-08-16 10:26:15 -0500 | [diff] [blame^] | 206 | printf("Data base is not updated than the older one (Older: %s New: %s)\n",comp,nlsr->lsdb->version); |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 207 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 208 | |
| 209 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | int |
| 213 | send_lsdb_interest(struct ccn_schedule *sched, void *clienth, |
| 214 | struct ccn_scheduled_event *ev, int flags) |
| 215 | { |
| 216 | |
| 217 | struct ccn_charbuf *name; |
| 218 | long int rnum; |
| 219 | char rnumstr[20]; |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 220 | char lsdb_str[5]; |
| 221 | char nlsr_str[5]; |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 222 | |
| 223 | int res,i; |
| 224 | int adl_element; |
| 225 | |
| 226 | rnum=random(); |
| 227 | memset(&rnumstr,0,20); |
| 228 | sprintf(rnumstr,"%ld",rnum); |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 229 | memset(&nlsr_str,0,5); |
| 230 | sprintf(nlsr_str,"nlsr"); |
| 231 | memset(&lsdb_str,0,5); |
| 232 | sprintf(lsdb_str,"lsdb"); |
| 233 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 234 | |
| 235 | struct ndn_neighbor *nbr; |
| 236 | |
| 237 | struct hashtb_enumerator ee; |
| 238 | struct hashtb_enumerator *e = ⅇ |
| 239 | |
| 240 | hashtb_start(nlsr->adl, e); |
| 241 | adl_element=hashtb_n(nlsr->adl); |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 242 | //int mynumber=15; |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 243 | |
| 244 | for(i=0;i<adl_element;i++) |
| 245 | { |
| 246 | nbr=e->data; |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 247 | 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] | 248 | name=ccn_charbuf_create(); |
| 249 | res=ccn_name_from_uri(name,nbr->neighbor->name); |
akmhoque | ea3603e | 2012-08-13 11:24:09 -0500 | [diff] [blame] | 250 | ccn_name_append_str(name,nlsr_str); |
| 251 | ccn_name_append_str(name,lsdb_str); |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 252 | ccn_name_append_str(name,rnumstr); |
| 253 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 254 | /* adding Exclusion filter */ |
akmhoque | bf1aa83 | 2012-08-13 13:26:59 -0500 | [diff] [blame] | 255 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 256 | struct ccn_charbuf *templ; |
| 257 | templ = ccn_charbuf_create(); |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 258 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 259 | struct ccn_charbuf *c; |
| 260 | c = ccn_charbuf_create(); |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 261 | |
| 262 | |
| 263 | ccn_charbuf_append_tt(templ, CCN_DTAG_Interest, CCN_DTAG); |
| 264 | ccn_charbuf_append_tt(templ, CCN_DTAG_Name, CCN_DTAG); |
| 265 | ccn_charbuf_append_closer(templ); /* </Name> */ |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 266 | ccn_charbuf_append_tt(templ, CCN_DTAG_Exclude, CCN_DTAG); |
| 267 | ccnb_tagged_putf(templ, CCN_DTAG_Any, ""); |
| 268 | ccn_charbuf_reset(c); |
akmhoque | 07dd8cc | 2012-08-16 10:23:01 -0500 | [diff] [blame] | 269 | //ccn_charbuf_putf(c, "%u", (unsigned)mynumber); |
| 270 | ccn_charbuf_putf(c, "%s", nbr->last_lsdb_version); |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 271 | ccnb_append_tagged_blob(templ, CCN_DTAG_Component, c->buf, c->length); |
| 272 | ccn_charbuf_append_closer(templ); /* </Exclude> */ |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 273 | ccn_charbuf_append_closer(templ); /* </Interest> */ |
akmhoque | 37e3adf | 2012-08-14 15:52:50 -0500 | [diff] [blame] | 274 | |
akmhoque | 6d49e4d | 2012-08-14 13:49:30 -0500 | [diff] [blame] | 275 | |
| 276 | /* Adding Exclusion filter done */ |
| 277 | |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 278 | res=ccn_express_interest(nlsr->ccn,name,&(nlsr->in_content),templ); |
| 279 | |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 280 | if ( res >= 0 ) |
| 281 | printf("Interest sending Successfull .... \n"); |
akmhoque | 37e3adf | 2012-08-14 15:52:50 -0500 | [diff] [blame] | 282 | ccn_charbuf_destroy(&c); |
akmhoque | 7f33727 | 2012-08-14 15:16:30 -0500 | [diff] [blame] | 283 | ccn_charbuf_destroy(&templ); |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 284 | ccn_charbuf_destroy(&name); |
| 285 | |
| 286 | hashtb_next(e); |
| 287 | } |
| 288 | |
| 289 | hashtb_end(e); |
| 290 | |
akmhoque | c928669 | 2012-08-16 09:57:58 -0500 | [diff] [blame] | 291 | nlsr->event_send_lsdb_interest = ccn_schedule_event(nlsr->sched, 300000000, &send_lsdb_interest, NULL, 0); |
akmhoque | 1c9b92f | 2012-08-13 10:57:50 -0500 | [diff] [blame] | 292 | |
| 293 | return 0; |
| 294 | |
| 295 | } |
| 296 | |