blob: 04b31d10b78fe166ff4b56a8a8fdb327d7889108 [file] [log] [blame]
akmhoque59980a52012-08-09 12:36:09 -05001#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>
akmhoque7f337272012-08-14 15:16:30 -050019#include <ccn/bloom.h>
akmhoque59980a52012-08-09 12:36:09 -050020
21#include "nlsr.h"
22#include "nlsr_ndn.h"
23#include "utility.h"
24
25enum ccn_upcall_res
26incoming_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
akmhoque1c9b92f2012-08-13 10:57:50 -050043 process_incoming_interest(selfp, info);
akmhoque59980a52012-08-09 12:36:09 -050044
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
74enum 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}
akmhoque61fe4472012-08-10 10:13:34 -0500113
akmhoque1c9b92f2012-08-13 10:57:50 -0500114void
115process_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 {
akmhoqueea3603e2012-08-13 11:24:09 -0500137 nlsr_position=i;
akmhoque1c9b92f2012-08-13 10:57:50 -0500138 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 {
akmhoquebf1aa832012-08-13 13:26:59 -0500149 process_incoming_interest_lsdb(selfp,info);
akmhoque1c9b92f2012-08-13 10:57:50 -0500150 }
akmhoquebf1aa832012-08-13 13:26:59 -0500151
152
153}
154
155
156void
157process_incoming_interest_lsdb(struct ccn_closure *selfp, struct ccn_upcall_info *info)
158{
159 printf("process_incoming_interest_lsdb called \n");
160
akmhoque6d49e4d2012-08-14 13:49:30 -0500161 int l;
akmhoquefce8cfc2012-08-14 14:00:33 -0500162 const unsigned char *exclbase;
akmhoque6d49e4d2012-08-14 13:49:30 -0500163 size_t size;
akmhoquefce8cfc2012-08-14 14:00:33 -0500164 struct ccn_buf_decoder decoder;
165 struct ccn_buf_decoder *d;
166 const unsigned char *comp;
167
akmhoque6d49e4d2012-08-14 13:49:30 -0500168
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);
185 ccn_buf_check_close(d);
186 }
187 ccn_buf_check_close(d);
188 }
189 if (d->decoder.state < 0)
190 printf("Parse Failed\n");
191 if (comp != NULL)
192 printf("No Number in Exclusion Filter\n");
193
194 /* Now comp points to the start of your potential number, and size is its length */
195 }
196
197
198
akmhoque1c9b92f2012-08-13 10:57:50 -0500199}
200
201int
202send_lsdb_interest(struct ccn_schedule *sched, void *clienth,
203 struct ccn_scheduled_event *ev, int flags)
204{
205
206 struct ccn_charbuf *name;
207 long int rnum;
208 char rnumstr[20];
akmhoqueea3603e2012-08-13 11:24:09 -0500209 char lsdb_str[5];
210 char nlsr_str[5];
akmhoque1c9b92f2012-08-13 10:57:50 -0500211
212 int res,i;
213 int adl_element;
214
215 rnum=random();
216 memset(&rnumstr,0,20);
217 sprintf(rnumstr,"%ld",rnum);
akmhoqueea3603e2012-08-13 11:24:09 -0500218 memset(&nlsr_str,0,5);
219 sprintf(nlsr_str,"nlsr");
220 memset(&lsdb_str,0,5);
221 sprintf(lsdb_str,"lsdb");
222
akmhoque1c9b92f2012-08-13 10:57:50 -0500223
224 struct ndn_neighbor *nbr;
225
226 struct hashtb_enumerator ee;
227 struct hashtb_enumerator *e = &ee;
228
229 hashtb_start(nlsr->adl, e);
230 adl_element=hashtb_n(nlsr->adl);
akmhoque6d49e4d2012-08-14 13:49:30 -0500231 int mynumber=15;
akmhoque1c9b92f2012-08-13 10:57:50 -0500232
233 for(i=0;i<adl_element;i++)
234 {
235 nbr=e->data;
akmhoqueea3603e2012-08-13 11:24:09 -0500236 printf("Sending interest for name prefix:%s/%s/%s/%s\n",nbr->neighbor->name,nlsr_str,lsdb_str,rnumstr);
akmhoque1c9b92f2012-08-13 10:57:50 -0500237 name=ccn_charbuf_create();
238 res=ccn_name_from_uri(name,nbr->neighbor->name);
akmhoqueea3603e2012-08-13 11:24:09 -0500239 ccn_name_append_str(name,nlsr_str);
240 ccn_name_append_str(name,lsdb_str);
akmhoque1c9b92f2012-08-13 10:57:50 -0500241 ccn_name_append_str(name,rnumstr);
242
akmhoque6d49e4d2012-08-14 13:49:30 -0500243 /* adding Exclusion filter */
akmhoquebf1aa832012-08-13 13:26:59 -0500244
akmhoque6d49e4d2012-08-14 13:49:30 -0500245 struct ccn_charbuf *templ;
246 templ = ccn_charbuf_create();
akmhoque7f337272012-08-14 15:16:30 -0500247
akmhoque6d49e4d2012-08-14 13:49:30 -0500248 struct ccn_charbuf *c;
249 c = ccn_charbuf_create();
akmhoque7f337272012-08-14 15:16:30 -0500250
251
252 ccn_charbuf_append_tt(templ, CCN_DTAG_Interest, CCN_DTAG);
253 ccn_charbuf_append_tt(templ, CCN_DTAG_Name, CCN_DTAG);
254 ccn_charbuf_append_closer(templ); /* </Name> */
255
akmhoque6d49e4d2012-08-14 13:49:30 -0500256 ccn_charbuf_append_tt(templ, CCN_DTAG_Exclude, CCN_DTAG);
257 ccnb_tagged_putf(templ, CCN_DTAG_Any, "");
258 ccn_charbuf_reset(c);
259 ccn_charbuf_putf(c, "%u", (unsigned)mynumber);
260 ccnb_append_tagged_blob(templ, CCN_DTAG_Component, c->buf, c->length);
261 ccn_charbuf_append_closer(templ); /* </Exclude> */
akmhoque7f337272012-08-14 15:16:30 -0500262
263 ccn_charbuf_append_closer(templ); /* </Interest> */
akmhoque6d49e4d2012-08-14 13:49:30 -0500264
265 /* Adding Exclusion filter done */
266
akmhoque7f337272012-08-14 15:16:30 -0500267 res=ccn_express_interest(nlsr->ccn,name,&(nlsr->in_content),templ);
268
akmhoque1c9b92f2012-08-13 10:57:50 -0500269 if ( res >= 0 )
270 printf("Interest sending Successfull .... \n");
akmhoque7f337272012-08-14 15:16:30 -0500271 //ccn_charbuf_destroy(&c);
272 ccn_charbuf_destroy(&templ);
akmhoque1c9b92f2012-08-13 10:57:50 -0500273 ccn_charbuf_destroy(&name);
274
275 hashtb_next(e);
276 }
277
278 hashtb_end(e);
279
280 nlsr->event_send_lsdb_interest = ccn_schedule_event(nlsr->sched, 60000000, &send_lsdb_interest, NULL, 0);
281
282 return 0;
283
284}
285