blob: 3129b586aa2c257fdb2348192965ca62c7a73102 [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>
19
20#include "nlsr.h"
21#include "nlsr_ndn.h"
22#include "utility.h"
23
24enum ccn_upcall_res
25incoming_interest(struct ccn_closure *selfp,
26 enum ccn_upcall_kind kind, struct ccn_upcall_info *info)
27{
28
29 switch (kind) {
30 case CCN_UPCALL_FINAL:
31 break;
32 case CCN_UPCALL_INTEREST:
33 // printing the name prefix for which it received interest
34 printf("Interest Received for name: ");
35 struct ccn_charbuf*c;
36 c=ccn_charbuf_create();
37 ccn_uri_append(c,info->interest_ccnb,info->pi->offset[CCN_PI_E_Name]-info->pi->offset[CCN_PI_B_Name],0);
38 //ccn_name_chop(c,NULL,-1);
39 printf("%s\n",ccn_charbuf_as_string(c));
40 ccn_charbuf_destroy(&c);
41
akmhoque1c9b92f2012-08-13 10:57:50 -050042 process_incoming_interest(selfp, info);
akmhoque59980a52012-08-09 12:36:09 -050043
44 /*
45 struct ccn_charbuf *data=ccn_charbuf_create();
46 struct ccn_charbuf *name=ccn_charbuf_create();
47 struct ccn_signing_params sp=CCN_SIGNING_PARAMS_INIT;
48
49 ccn_charbuf_append(name, info->interest_ccnb + info->pi->offset[CCN_PI_B_Name],
50 info->pi->offset[CCN_PI_E_Name] - info->pi->offset[CCN_PI_B_Name]);
51
52 sp.template_ccnb=ccn_charbuf_create();
53 ccn_charbuf_append_tt(sp.template_ccnb,CCN_DTAG_SignedInfo, CCN_DTAG);
54 ccnb_tagged_putf(sp.template_ccnb, CCN_DTAG_FreshnessSeconds, "%ld", 1010);
55 sp.sp_flags |= CCN_SP_TEMPL_FRESHNESS;
56 ccn_charbuf_append_closer(sp.template_ccnb);
57
58 res= ccn_sign_content(ospfndn->ccn, data, name, &sp, "hello", strlen("hello"));
59 res=ccn_put(ospfndn->ccn,data->buf,data->length);
60 ccn_charbuf_destroy(&data);
61
62 */
63 break;
64
65 default:
66 break;
67 }
68
69 return CCN_UPCALL_RESULT_OK;
70}
71
72
73enum ccn_upcall_res incoming_content(struct ccn_closure* selfp,
74 enum ccn_upcall_kind kind, struct ccn_upcall_info* info)
75{
76
77
78 switch(kind) {
79 case CCN_UPCALL_FINAL:
80 break;
81 case CCN_UPCALL_CONTENT:
82 printf("Content Received for name: ");
83 struct ccn_charbuf*c;
84 c=ccn_charbuf_create();
85 ccn_uri_append(c,info->interest_ccnb,info->pi->offset[CCN_PI_E],0);
86 printf("%s\n",ccn_charbuf_as_string(c));
87 ccn_charbuf_destroy(&c);
88
89 //process_incoming_content(selfp, info);
90 break;
91 case CCN_UPCALL_INTEREST_TIMED_OUT:
92 /* printf("Interest timed out \n");
93
94 const unsigned char *comp_ptr;
95 size_t comp_size;
96 int res;
97
98 res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps,2,&comp_ptr, &comp_size);
99
100 printf("Parsed Interest: %s size: %d Size of name prefix: %d\n",comp_ptr,(int)comp_size,(int)info->interest_comps->n);
101 */
102
103 //process_timed_out_interest(selfp,info);
104 break;
105 default:
106 fprintf(stderr, "Unexpected response of kind %d\n", kind);
107 return CCN_UPCALL_RESULT_ERR;
108 }
109
110 return CCN_UPCALL_RESULT_OK;
111}
akmhoque61fe4472012-08-10 10:13:34 -0500112
akmhoque1c9b92f2012-08-13 10:57:50 -0500113void
114process_incoming_interest(struct ccn_closure *selfp, struct ccn_upcall_info *info)
115{
116 printf("process_incoming_interest called \n");
117
118
119 struct ccn_charbuf*c;
120 c=ccn_charbuf_create();
121 ccn_uri_append(c,info->interest_ccnb,info->pi->offset[CCN_PI_E_Name]-info->pi->offset[CCN_PI_B_Name],0);
122 printf("%s\n",ccn_charbuf_as_string(c));
123 ccn_charbuf_destroy(&c);
124
125 const unsigned char *comp_ptr1;
126 size_t comp_size;
127 int res,i;
128 int nlsr_position=0;
129 int name_comps=(int)info->interest_comps->n;
130
131 for(i=0;i<name_comps;i++)
132 {
133 res=ccn_name_comp_strcmp(info->interest_ccnb,info->interest_comps,i,"nlsr");
134 if( res == 0)
135 {
akmhoqueea3603e2012-08-13 11:24:09 -0500136 nlsr_position=i;
akmhoque1c9b92f2012-08-13 10:57:50 -0500137 break;
138 }
139 }
140
141 res=ccn_name_comp_get(info->interest_ccnb, info->interest_comps,nlsr_position+1,&comp_ptr1, &comp_size);
142
143
144 printf("Det= %s \n",comp_ptr1);
145
146 if(!strcmp((char *)comp_ptr1,"lsdb"))
147 {
akmhoquebf1aa832012-08-13 13:26:59 -0500148 process_incoming_interest_lsdb(selfp,info);
akmhoque1c9b92f2012-08-13 10:57:50 -0500149 }
akmhoquebf1aa832012-08-13 13:26:59 -0500150
151
152}
153
154
155void
156process_incoming_interest_lsdb(struct ccn_closure *selfp, struct ccn_upcall_info *info)
157{
158 printf("process_incoming_interest_lsdb called \n");
159
akmhoque6d49e4d2012-08-14 13:49:30 -0500160 int l;
161 struct ccn_charbuf *exclbase, *comp;
162 exclbase=ccn_charbuf_create();
163 comp=ccn_charbuf_create();
164 size_t size;
165 struct ccn_buf_decoder *d, *decoder;
166
167 l = info->pi->offset[CCN_PI_E_Exclude] - info->pi->offset[CCN_PI_B_Exclude];
168 if (l > 0)
169 {
170 comp = NULL;
171 size = 0;
172 exclbase = info->interest_ccnb + info->pi->offset[CCN_PI_B_Exclude];
173 d = ccn_buf_decoder_start(&decoder, exclbase, l);
174 if (ccn_buf_match_dtag(d, CCN_DTAG_Exclude))
175 {
176 ccn_buf_advance(d);
177 if (ccn_buf_match_dtag(d, CCN_DTAG_Any))
178 ccn_buf_advance_past_element(d);
179 if (ccn_buf_match_dtag(d, CCN_DTAG_Component))
180 {
181 ccn_buf_advance(d);
182 ccn_buf_match_blob(d, &comp, &size);
183 ccn_buf_check_close(d);
184 }
185 ccn_buf_check_close(d);
186 }
187 if (d->decoder.state < 0)
188 printf("Parse Failed\n");
189 if (comp != NULL)
190 printf("No Number in Exclusion Filter\n");
191
192 /* Now comp points to the start of your potential number, and size is its length */
193 }
194
195
196
akmhoque1c9b92f2012-08-13 10:57:50 -0500197}
198
199int
200send_lsdb_interest(struct ccn_schedule *sched, void *clienth,
201 struct ccn_scheduled_event *ev, int flags)
202{
203
204 struct ccn_charbuf *name;
205 long int rnum;
206 char rnumstr[20];
akmhoqueea3603e2012-08-13 11:24:09 -0500207 char lsdb_str[5];
208 char nlsr_str[5];
akmhoque1c9b92f2012-08-13 10:57:50 -0500209
210 int res,i;
211 int adl_element;
212
213 rnum=random();
214 memset(&rnumstr,0,20);
215 sprintf(rnumstr,"%ld",rnum);
akmhoqueea3603e2012-08-13 11:24:09 -0500216 memset(&nlsr_str,0,5);
217 sprintf(nlsr_str,"nlsr");
218 memset(&lsdb_str,0,5);
219 sprintf(lsdb_str,"lsdb");
220
akmhoque1c9b92f2012-08-13 10:57:50 -0500221
222 struct ndn_neighbor *nbr;
223
224 struct hashtb_enumerator ee;
225 struct hashtb_enumerator *e = &ee;
226
227 hashtb_start(nlsr->adl, e);
228 adl_element=hashtb_n(nlsr->adl);
akmhoque6d49e4d2012-08-14 13:49:30 -0500229 int mynumber=15;
akmhoque1c9b92f2012-08-13 10:57:50 -0500230
231 for(i=0;i<adl_element;i++)
232 {
233 nbr=e->data;
akmhoqueea3603e2012-08-13 11:24:09 -0500234 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 -0500235 name=ccn_charbuf_create();
236 res=ccn_name_from_uri(name,nbr->neighbor->name);
akmhoqueea3603e2012-08-13 11:24:09 -0500237 ccn_name_append_str(name,nlsr_str);
238 ccn_name_append_str(name,lsdb_str);
akmhoque1c9b92f2012-08-13 10:57:50 -0500239 ccn_name_append_str(name,rnumstr);
240
akmhoque6d49e4d2012-08-14 13:49:30 -0500241 /* adding Exclusion filter */
akmhoquebf1aa832012-08-13 13:26:59 -0500242
akmhoque6d49e4d2012-08-14 13:49:30 -0500243 struct ccn_charbuf *templ;
244 templ = ccn_charbuf_create();
245
246 struct ccn_charbuf *c;
247 c = ccn_charbuf_create();
248
249 ccn_charbuf_append_tt(templ, CCN_DTAG_Exclude, CCN_DTAG);
250 ccnb_tagged_putf(templ, CCN_DTAG_Any, "");
251 ccn_charbuf_reset(c);
252 ccn_charbuf_putf(c, "%u", (unsigned)mynumber);
253 ccnb_append_tagged_blob(templ, CCN_DTAG_Component, c->buf, c->length);
254 ccn_charbuf_append_closer(templ); /* </Exclude> */
255
256 /* Adding Exclusion filter done */
257
akmhoquebf1aa832012-08-13 13:26:59 -0500258 res=ccn_express_interest(nlsr->ccn,name,&(nlsr->in_content),templ);
akmhoque1c9b92f2012-08-13 10:57:50 -0500259 if ( res >= 0 )
260 printf("Interest sending Successfull .... \n");
261 ccn_charbuf_destroy(&name);
262
263 hashtb_next(e);
264 }
265
266 hashtb_end(e);
267
268 nlsr->event_send_lsdb_interest = ccn_schedule_event(nlsr->sched, 60000000, &send_lsdb_interest, NULL, 0);
269
270 return 0;
271
272}
273