-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathccnd.c
6244 lines (5960 loc) · 196 KB
/
ccnd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* ccnd/ccnd.c
*
* Main program of ccnd - the CCNx Daemon
*
* Copyright (C) 2008-2013 Palo Alto Research Center, Inc.
*
* This work is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation.
* This work is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details. You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
/**
* Main program of ccnd - the CCNx Daemon
*/
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <netdb.h>
#include <poll.h>
#include <signal.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/un.h>
#include <netinet/in.h>
#if defined(NEED_GETADDRINFO_COMPAT)
#include "getaddrinfo.h"
#include "dummyin6.h"
#endif
#include <ccn/bloom.h>
#include <ccn/ccn.h>
#include <ccn/ccn_private.h>
#include <ccn/ccnd.h>
#include <ccn/charbuf.h>
#include <ccn/face_mgmt.h>
#include <ccn/flatname.h>
#include <ccn/hashtb.h>
#include <ccn/indexbuf.h>
#include <ccn/nametree.h>
#include <ccn/schedule.h>
#include <ccn/reg_mgmt.h>
#include <ccn/strategy_mgmt.h>
#include <ccn/uri.h>
#include "ccnd_private.h"
static void cleanup_at_exit(void);
static void unlink_at_exit(const char *path);
static int create_local_listener(struct ccnd_handle *h, const char *sockname, int backlog);
static struct face *record_connection(struct ccnd_handle *h,
int fd,
struct sockaddr *who,
socklen_t wholen,
int setflags);
static void process_input_message(struct ccnd_handle *h, struct face *face,
unsigned char *msg, size_t size, int pdu_ok);
static void process_input(struct ccnd_handle *h, int fd);
static int ccn_stuff_interest(struct ccnd_handle *h,
struct face *face, struct ccn_charbuf *c);
static void do_deferred_write(struct ccnd_handle *h, int fd);
static struct face *get_dgram_source(struct ccnd_handle *h, struct face *face,
struct sockaddr *addr, socklen_t addrlen,
int why);
static struct content_entry *content_from_accession(struct ccnd_handle *h,
ccn_cookie accession);
static int is_stale(struct ccnd_handle *h, struct content_entry *content);
static void mark_stale(struct ccnd_handle *h,
struct content_entry *content);
static struct content_entry *content_next(struct ccnd_handle *h,
struct content_entry *content);
static void reap_needed(struct ccnd_handle *h, int init_delay_usec);
static void check_comm_file(struct ccnd_handle *h);
static int nameprefix_seek(struct ccnd_handle *h,
struct hashtb_enumerator *e,
const unsigned char *msg,
struct ccn_indexbuf *comps,
int ncomps);
static void register_new_face(struct ccnd_handle *h, struct face *face);
static void update_forward_to(struct ccnd_handle *h,
struct nameprefix_entry *npe);
static void stuff_and_send(struct ccnd_handle *h, struct face *face,
const unsigned char *data1, size_t size1,
const unsigned char *data2, size_t size2,
const char *tag, int lineno);
static void ccn_link_state_init(struct ccnd_handle *h, struct face *face);
static void ccn_append_link_stuff(struct ccnd_handle *h,
struct face *face,
struct ccn_charbuf *c);
static int process_incoming_link_message(struct ccnd_handle *h,
struct face *face, enum ccn_dtag dtag,
unsigned char *msg, size_t size);
static void process_internal_client_buffer(struct ccnd_handle *h);
static int nonce_ok(struct ccnd_handle *h, struct face *face,
const unsigned char *interest_msg,
struct ccn_parsed_interest *pi,
const unsigned char *nonce, size_t noncesize);
static void
pfi_destroy(struct ccnd_handle *h, struct interest_entry *ie,
struct pit_face_item *p);
static struct pit_face_item *
pfi_set_nonce(struct ccnd_handle *h, struct interest_entry *ie,
struct pit_face_item *p,
const unsigned char *nonce, size_t noncesize);
static int
pfi_nonce_matches(struct pit_face_item *p,
const unsigned char *nonce, size_t size);
static struct pit_face_item *
pfi_copy_nonce(struct ccnd_handle *h, struct interest_entry *ie,
struct pit_face_item *p, const struct pit_face_item *src);
static int
pfi_unique_nonce(struct ccnd_handle *h, struct interest_entry *ie,
struct pit_face_item *p);
static int wt_compare(ccn_wrappedtime, ccn_wrappedtime);
static void
update_npe_children(struct ccnd_handle *h, struct nameprefix_entry *npe, unsigned faceid);
static void
pfi_set_expiry_from_lifetime(struct ccnd_handle *h, struct interest_entry *ie,
struct pit_face_item *p, intmax_t lifetime);
static struct pit_face_item *
pfi_seek(struct ccnd_handle *h, struct interest_entry *ie,
unsigned faceid, unsigned pfi_flag);
static void strategy_callout(struct ccnd_handle *h,
struct interest_entry *ie,
enum ccn_strategy_op op,
unsigned faceid);
#ifndef CCND_WTHZ
/**
* Frequency of wrapped timer
*
* This should divide 1000000 evenly. Making this too large reduces the
* maximum supported interest lifetime, and making it too small makes the
* timekeeping too coarse.
*/
#define CCND_WTHZ 1000U
#endif
#define WTHZ ((unsigned)(CCND_WTHZ))
#ifndef CCND_CACHE_MARGIN
/**
* Allow a few extra entries in the cache to allow for output queuing
*/
#define CCND_CACHE_MARGIN 10
#endif
#ifndef CCND_MAX_MATCH_PROBES
/**
* Maximum number of probes when searching the cache for a match
*/
#define CCND_MAX_MATCH_PROBES 50000
#endif
/**
* Name of our unix-domain listener
*
* This tiny bit of global state is needed so that the unix-domain listener
* can be removed at shutdown.
*/
static const char *unlink_this_at_exit = NULL;
static void
cleanup_at_exit(void)
{
if (unlink_this_at_exit != NULL) {
unlink(unlink_this_at_exit);
unlink_this_at_exit = NULL;
}
}
static void
handle_fatal_signal(int sig)
{
cleanup_at_exit();
_exit(sig);
}
/**
* Record the name of the unix-domain listener
*
* Sets up signal handlers in case we are stopping due to a signal.
*/
static void
unlink_at_exit(const char *path)
{
if (unlink_this_at_exit == NULL) {
static char namstor[sizeof(struct sockaddr_un)];
strncpy(namstor, path, sizeof(namstor));
unlink_this_at_exit = namstor;
signal(SIGTERM, &handle_fatal_signal);
signal(SIGINT, &handle_fatal_signal);
signal(SIGHUP, &handle_fatal_signal);
atexit(&cleanup_at_exit);
}
}
/**
* Check to see if the unix-domain listener has been unlinked
*
* @returns 1 if the file is there, 0 if not.
*/
static int
comm_file_ok(void)
{
struct stat statbuf;
int res;
if (unlink_this_at_exit == NULL)
return(1);
res = stat(unlink_this_at_exit, &statbuf);
if (res == -1)
return(0);
return(1);
}
/**
* Obtain a charbuf for short-term use
*/
static struct ccn_charbuf *
charbuf_obtain(struct ccnd_handle *h)
{
struct ccn_charbuf *c = h->scratch_charbuf;
if (c == NULL)
return(ccn_charbuf_create());
h->scratch_charbuf = NULL;
c->length = 0;
return(c);
}
/**
* Release a charbuf for reuse
*/
static void
charbuf_release(struct ccnd_handle *h, struct ccn_charbuf *c)
{
c->length = 0;
if (h->scratch_charbuf == NULL)
h->scratch_charbuf = c;
else
ccn_charbuf_destroy(&c);
}
/**
* Obtain an indexbuf for short-term use
*/
static struct ccn_indexbuf *
indexbuf_obtain(struct ccnd_handle *h)
{
struct ccn_indexbuf *c = h->scratch_indexbuf;
if (c == NULL)
return(ccn_indexbuf_create());
h->scratch_indexbuf = NULL;
c->n = 0;
return(c);
}
/**
* Release an indexbuf for reuse
*/
static void
indexbuf_release(struct ccnd_handle *h, struct ccn_indexbuf *c)
{
c->n = 0;
if (h->scratch_indexbuf == NULL)
h->scratch_indexbuf = c;
else
ccn_indexbuf_destroy(&c);
}
/**
* Looks up a face based on its faceid (private).
*/
static struct face *
face_from_faceid(struct ccnd_handle *h, unsigned faceid)
{
unsigned slot = faceid & MAXFACES;
struct face *face = NULL;
if (slot < h->face_limit) {
face = h->faces_by_faceid[slot];
if (face != NULL && face->faceid != faceid)
face = NULL;
}
return(face);
}
/**
* Looks up a face based on its faceid.
*/
struct face *
ccnd_face_from_faceid(struct ccnd_handle *h, unsigned faceid)
{
return(face_from_faceid(h, faceid));
}
/** Accessor for faceid */
unsigned
face_faceid(struct face *face)
{
if (face == NULL)
return(CCN_NO_FACEID);
return(face->faceid);
}
/** Accessor for number of pending interests received on a face */
int
face_pending_interests(struct face *face)
{
if (face == NULL)
return(0);
return(face->pending_interests);
}
/** Accessor for number of outstanding interests sent on a face */
int
face_outstanding_interests(struct face *face)
{
if (face == NULL)
return(0);
return(face->outstanding_interests);
}
/**
* Assigns the faceid for a nacent face,
* calls register_new_face() if successful.
*/
static int
enroll_face(struct ccnd_handle *h, struct face *face)
{
unsigned i;
unsigned n = h->face_limit;
struct face **a = h->faces_by_faceid;
for (i = h->face_rover; i < n; i++)
if (a[i] == NULL) goto use_i;
for (i = 0; i < n; i++)
if (a[i] == NULL) {
/* bump gen only if second pass succeeds */
h->face_gen += MAXFACES + 1;
goto use_i;
}
i = (n + 1) * 3 / 2;
if (i > MAXFACES) i = MAXFACES;
if (i <= n)
return(-1); /* overflow */
a = realloc(a, i * sizeof(struct face *));
if (a == NULL)
return(-1); /* ENOMEM */
h->face_limit = i;
while (--i > n)
a[i] = NULL;
h->faces_by_faceid = a;
use_i:
a[i] = face;
h->face_rover = i + 1;
face->faceid = i | h->face_gen;
face->meter[FM_BYTI] = ccnd_meter_create(h, "bytein");
face->meter[FM_BYTO] = ccnd_meter_create(h, "byteout");
face->meter[FM_INTI] = ccnd_meter_create(h, "intrin");
face->meter[FM_INTO] = ccnd_meter_create(h, "introut");
face->meter[FM_DATI] = ccnd_meter_create(h, "datain");
face->meter[FM_DATO] = ccnd_meter_create(h, "dataout");
register_new_face(h, face);
return (face->faceid);
}
/**
* Decide how much to delay the content sent out on a face.
*
* Units are microseconds.
*/
static int
choose_face_delay(struct ccnd_handle *h, struct face *face, enum cq_delay_class c)
{
int micros;
int shift;
if (c == CCN_CQ_ASAP)
return(1);
if ((face->flags & CCN_FACE_MCAST) != 0) {
shift = (c == CCN_CQ_SLOW) ? 2 : 0;
micros = (h->data_pause_microsec) << shift;
return(micros); /* multicast, delay more */
}
return(1);
}
/**
* Create a queue for sending content.
*/
static struct content_queue *
content_queue_create(struct ccnd_handle *h, struct face *face, enum cq_delay_class c)
{
struct content_queue *q;
unsigned usec;
q = calloc(1, sizeof(*q));
if (q != NULL) {
usec = choose_face_delay(h, face, c);
q->burst_nsec = (usec <= 500 ? 500 : 150000); // XXX - needs a knob
q->min_usec = usec;
q->rand_usec = 2 * usec;
q->nrun = 0;
q->send_queue = ccn_indexbuf_create();
if (q->send_queue == NULL) {
free(q);
return(NULL);
}
q->sender = NULL;
}
return(q);
}
/**
* Destroy a queue.
*/
static void
content_queue_destroy(struct ccnd_handle *h, struct content_queue **pq)
{
struct content_queue *q;
struct ccn_indexbuf *s;
struct content_entry *c;
int i;
if (*pq != NULL) {
q = *pq;
s = q->send_queue;
if (s != NULL) {
for (i = 0; i < s->n; i++) {
c = content_from_accession(h, s->buf[i]);
if (c != NULL)
c->refs--;
}
}
ccn_indexbuf_destroy(&q->send_queue);
if (q->sender != NULL) {
ccn_schedule_cancel(h->sched, q->sender);
q->sender = NULL;
}
free(q);
*pq = NULL;
}
}
/**
* Close an open file descriptor quietly.
*/
static void
close_fd(int *pfd)
{
if (*pfd != -1) {
close(*pfd);
*pfd = -1;
}
}
/**
* Close an open file descriptor, and grumble about it.
*/
static void
ccnd_close_fd(struct ccnd_handle *h, unsigned faceid, int *pfd)
{
int res;
if (*pfd != -1) {
int linger = 0;
setsockopt(*pfd, SOL_SOCKET, SO_LINGER,
&linger, sizeof(linger));
res = close(*pfd);
if (res == -1)
ccnd_msg(h, "close failed for face %u fd=%d: %s (errno=%d)",
faceid, *pfd, strerror(errno), errno);
else
ccnd_msg(h, "closing fd %d while finalizing face %u", *pfd, faceid);
*pfd = -1;
}
}
uint32_t
ccnd_random(struct ccnd_handle *h)
{
return(nrand48(h->seed));
}
/**
* Associate a guid with a face.
*
* The same guid is shared among all the peers that communicate over the
* face, and no two faces at a node should have the same guid.
*
* @returns 0 for success, -1 for error.
*/
int
ccnd_set_face_guid(struct ccnd_handle *h, struct face *face,
const unsigned char *guid, size_t size)
{
struct hashtb_enumerator ee;
struct hashtb_enumerator *e = ⅇ
struct ccn_charbuf *c = NULL;
int res;
if (size > 255)
return(-1);
if (face->guid != NULL)
return(-1);
if (h->faceid_by_guid == NULL)
return(-1);
c = ccn_charbuf_create();
ccn_charbuf_append_value(c, size, 1);
ccn_charbuf_append(c, guid, size);
hashtb_start(h->faceid_by_guid, e);
res = hashtb_seek(e, c->buf, c->length, 0);
ccn_charbuf_destroy(&c);
if (res < 0)
return(-1);
if (res == HT_NEW_ENTRY) {
face->guid = e->key;
*(unsigned *)(e->data) = face->faceid;
res = 0;
}
else
res = -1;
hashtb_end(e);
return(res);
}
/**
* Return the faceid associated with the guid.
*/
unsigned
ccnd_faceid_from_guid(struct ccnd_handle *h,
const unsigned char *guid, size_t size)
{
struct ccn_charbuf *c = NULL;
unsigned *pfaceid = NULL;
if (size > 255)
return(CCN_NOFACEID);
if (h->faceid_by_guid == NULL)
return(CCN_NOFACEID);
c = ccn_charbuf_create();
ccn_charbuf_append_value(c, size, 1);
ccn_charbuf_append(c, guid, size);
pfaceid = hashtb_lookup(h->faceid_by_guid, c->buf, c->length);
ccn_charbuf_destroy(&c);
if (pfaceid == NULL)
return(CCN_NOFACEID);
return(*pfaceid);
}
/**
* Append the guid associated with a face to a charbuf
*
* @returns the length of the appended guid, or -1 for error.
*/
int
ccnd_append_face_guid(struct ccnd_handle *h, struct ccn_charbuf *cb,
struct face *face)
{
if (face == NULL || face->guid == NULL)
return(-1);
ccn_charbuf_append(cb, face->guid + 1, face->guid[0]);
return(face->guid[0]);
}
/**
* Forget the guid associated with a face.
*
* The first byte of face->guid is the length of the actual guid bytes.
*/
void
ccnd_forget_face_guid(struct ccnd_handle *h, struct face *face)
{
struct hashtb_enumerator ee;
struct hashtb_enumerator *e = ⅇ
const unsigned char *guid;
int res;
guid = face->guid;
face->guid = NULL;
ccn_charbuf_destroy(&face->guid_cob);
if (guid == NULL)
return;
if (h->faceid_by_guid == NULL)
return;
hashtb_start(h->faceid_by_guid, e);
res = hashtb_seek(e, guid, guid[0] + 1, 0);
if (res < 0)
return;
hashtb_delete(e);
hashtb_end(e);
}
/**
* Generate a new guid for a face
*
* This guid is useful for routing agents, as it gives an unambiguous way
* to talk about a connection between two nodes.
*
* lo and hi, if not NULL, are exclusive bounds for the generated guid.
* The size is in bytes, and refers to both the bounds and the result.
*/
void
ccnd_generate_face_guid(struct ccnd_handle *h, struct face *face, int size,
const unsigned char *lo, const unsigned char *hi)
{
int i;
unsigned check = CCN_FACE_GG | CCN_FACE_UNDECIDED | CCN_FACE_PASSIVE;
unsigned want = 0;
uint_least64_t range;
uint_least64_t r;
struct ccn_charbuf *c = NULL;
if ((face->flags & check) != want)
return;
/* XXX - This should be using higher-quality randomness */
if (lo != NULL && hi != NULL) {
/* Generate up to 64 additional random bits to augment guid */
for (i = 0; i < size && lo[i] == hi[i];)
i++;
if (i == size || lo[i] > hi[i])
return;
if (size - i > sizeof(range))
range = ~0;
else {
range = 0;
for (; i < size; i++)
range = (range << 8) + hi[i] - lo[i];
}
if (range < 2)
return;
c = ccn_charbuf_create();
ccn_charbuf_append(c, lo, size);
r = nrand48(h->seed);
r = (r << 20) ^ nrand48(h->seed);
r = (r << 20) ^ nrand48(h->seed);
r = r % (range - 1) + 1;
for (i = size - 1; r != 0 && i >= 0; i--) {
r = r + c->buf[i];
c->buf[i] = r & 0xff;
r = r >> 8;
}
}
else {
for (i = 0; i < size; i++)
ccn_charbuf_append_value(c, nrand48(h->seed) & 0xff, 1);
}
ccnd_set_face_guid(h, face, c->buf, c->length);
ccn_charbuf_destroy(&c);
}
/**
* Clean up when a face is being destroyed.
*
* This is called when an entry is deleted from one of the hash tables that
* keep track of faces.
*/
static void
finalize_face(struct hashtb_enumerator *e)
{
struct ccnd_handle *h = hashtb_get_param(e->ht, NULL);
struct face *face = e->data;
unsigned i = face->faceid & MAXFACES;
enum cq_delay_class c;
int recycle = 0;
int m;
if (i < h->face_limit && h->faces_by_faceid[i] == face) {
if ((face->flags & CCN_FACE_UNDECIDED) == 0)
ccnd_face_status_change(h, face->faceid);
if (e->ht == h->faces_by_fd)
ccnd_close_fd(h, face->faceid, &face->recv_fd);
if ((face->guid) != NULL)
ccnd_forget_face_guid(h, face);
ccn_charbuf_destroy(&face->guid_cob);
h->faces_by_faceid[i] = NULL;
if ((face->flags & CCN_FACE_UNDECIDED) != 0 &&
face->faceid == ((h->face_rover - 1) | h->face_gen)) {
/* stream connection with no ccn traffic - safe to reuse */
recycle = 1;
h->face_rover--;
}
for (c = 0; c < CCN_CQ_N; c++)
content_queue_destroy(h, &(face->q[c]));
ccn_charbuf_destroy(&face->inbuf);
ccn_charbuf_destroy(&face->outbuf);
ccnd_msg(h, "%s face id %u (slot %u)",
recycle ? "recycling" : "releasing",
face->faceid, face->faceid & MAXFACES);
/* Don't free face->addr; storage is managed by hash table */
}
else if (face->faceid != CCN_NOFACEID)
ccnd_msg(h, "orphaned face %u", face->faceid);
if (face->lfaceattrs != NULL) {
free(face->lfaceattrs);
face->lfaceattrs = NULL;
face->nlfaceattr = 0;
}
for (m = 0; m < CCND_FACE_METER_N; m++)
ccnd_meter_destroy(&face->meter[m]);
}
static int
faceattr_index_lookup(struct ccnd_handle *h, const char *name, int singlebit)
{
struct hashtb_enumerator ee;
struct hashtb_enumerator *e = ⅇ
struct faceattr_index_entry *entry = NULL;
int i;
int res;
hashtb_start(h->faceattr_index_tab, e);
res = hashtb_seek(e, (const void *)name, strlen(name), 1);
entry = e->data;
if (res == HT_OLD_ENTRY)
i = entry->fa_index;
else if (res == HT_NEW_ENTRY) {
i = 32;
if (singlebit) {
for (i = 0; i < 32; i++) {
if ((h->faceattr_packed & (1U << i)) == 0) {
h->faceattr_packed |= (1U << i);
break;
}
}
}
if (i == 32)
i += (h->nlfaceattr++);
entry->fa_index = i;
}
else
i = -1;
hashtb_end(e);
return(i);
}
int
faceattr_index_from_name(struct ccnd_handle *h, const char *name)
{
return(faceattr_index_lookup(h, name, 0));
}
int
faceattr_bool_index_from_name(struct ccnd_handle *h, const char *name)
{
return(faceattr_index_lookup(h, name, 1));
}
int
faceattr_index_allocate(struct ccnd_handle *h)
{
int ans;
int i;
char id[20];
id[0] = 0;
i = 32 + h->nlfaceattr;
snprintf(id, sizeof(id), "_%d", i);
ans = faceattr_index_from_name(h, id);
if (ans >= 0 && ans != i) abort();
return(ans);
}
int
faceattr_index_free(struct ccnd_handle *h, int faceattr_index)
{
/*
* Doing a careful job of this could be done:
*
* 1. enumerate faceattr_index_tab, looking for the assigned index.
* 2. remove it, and keep track of the free index
* 3. enumerate faces, clearing the associated values
*
* since all of that is probably more involved than the rest of
* the faceattr handling code, for now we simple don't attempt to
* re-use the index.
*/
return(0);
}
int
faceattr_set(struct ccnd_handle *h, struct face *face, int faceattr_index, unsigned value)
{
unsigned *x = NULL;
if (face == NULL)
return(-1);
if (faceattr_index < 0)
return(-1);
if (faceattr_index < 32) {
if (value & 1)
face->faceattr_packed |= ((unsigned)1 << faceattr_index);
else
face->faceattr_packed &= ~((unsigned)1 << faceattr_index);
return(0);
}
x = face->lfaceattrs;
if (faceattr_index - 32 >= face->nlfaceattr) {
if (faceattr_index - 32 >= h->nlfaceattr)
return(-1);
if (value == 0)
return(0);
x = realloc(x, sizeof(unsigned) * (faceattr_index - 32 + 1));
if (x == NULL)
return(-1);
while (faceattr_index - 32 >= face->nlfaceattr)
x[face->nlfaceattr++] = 0;
face->lfaceattrs = x;
}
x[faceattr_index - 32] = value;
return(0);
}
unsigned
faceattr_get(struct ccnd_handle *h, struct face *face, int faceattr_index)
{
if (face == NULL)
return(0);
if (faceattr_index < 0 || faceattr_index > 32 + face->nlfaceattr)
return(0);
if (faceattr_index < 32)
return((face->faceattr_packed >> faceattr_index) & 1);
return(face->lfaceattrs[faceattr_index - 32]);
}
unsigned
faceattr_get_packed(struct ccnd_handle *h, struct face *face)
{
if (face == NULL)
return(0);
return(face->faceattr_packed);
}
static void
faceattr_declare(struct ccnd_handle *h, const char *name, int ndx)
{
int res;
if (ndx < 32)
res = faceattr_bool_index_from_name(h, name);
else
res = faceattr_index_from_name(h, name);
if (res != ndx)
abort();
}
const char *
faceattr_next_name(struct ccnd_handle *h, const char *name)
{
struct hashtb_enumerator ee;
struct hashtb_enumerator *e = ⅇ
const char *next = NULL;
int res;
hashtb_start(h->faceattr_index_tab, e);
if (name == NULL)
next = (const char *)e->key;
else {
res = hashtb_seek(e, (const void *)name, strlen(name), 1);
if (res == HT_OLD_ENTRY) {
hashtb_next(e);
next = (const char *)e->key;
}
else if (res == HT_NEW_ENTRY) {
hashtb_delete(e);
}
}
hashtb_end(e);
return(next);
}
/**
* Convert an accession to its associated content handle.
*
* @returns content handle, or NULL if it is no longer available.
*/
static struct content_entry *
content_from_accession(struct ccnd_handle *h, ccn_cookie accession)
{
struct content_entry *ans = NULL;
struct ccny *y;
y = ccny_from_cookie(h->content_tree, accession);
if (y != NULL)
ans = ccny_payload(y);
return(ans);
}
/**
* Find the first candidate that might match the given interest.
*/
static struct content_entry *
find_first_match_candidate(struct ccnd_handle *h,
const unsigned char *interest_msg,
const struct ccn_parsed_interest *pi)
{
size_t start = pi->offset[CCN_PI_B_Name];
size_t end = pi->offset[CCN_PI_E_Name];
struct ccn_charbuf *namebuf = charbuf_obtain(h); // XXX Need to release
struct ccny *y = NULL;
ccn_flatname_from_ccnb(namebuf, interest_msg + start, end - start);
// XXX check return
if (pi->offset[CCN_PI_B_Exclude] < pi->offset[CCN_PI_E_Exclude]) {
/* Check for <Exclude><Any/><Component>... fast case */
struct ccn_buf_decoder decoder;
struct ccn_buf_decoder *d;
size_t ex1start;
size_t ex1end;
d = ccn_buf_decoder_start(&decoder,
interest_msg + pi->offset[CCN_PI_B_Exclude],
pi->offset[CCN_PI_E_Exclude] -
pi->offset[CCN_PI_B_Exclude]);
ccn_buf_advance(d);
if (ccn_buf_match_dtag(d, CCN_DTAG_Any)) {
ccn_buf_advance(d);
ccn_buf_check_close(d);
if (ccn_buf_match_dtag(d, CCN_DTAG_Component)) {
ex1start = pi->offset[CCN_PI_B_Exclude] + d->decoder.token_index;
ccn_buf_advance_past_element(d);
ex1end = pi->offset[CCN_PI_B_Exclude] + d->decoder.token_index;
if (d->decoder.state >= 0) {
ccn_flatname_append_from_ccnb(namebuf,
interest_msg + ex1start,
ex1end - ex1start, 0, 1);
// if (h->debug & 8)
// ccnd_debug_ccnb(h, __LINE__, "fastex", NULL,
// namebuf->buf, namebuf->length);
}
}
}
}
y = ccn_nametree_look_ge(h->content_tree, namebuf->buf, namebuf->length);
charbuf_release(h, namebuf);
if (y == NULL)
return(NULL);
return(ccny_payload(y));
}
/**
* Check for a prefix match
*/
static int
content_matches_prefix(struct ccnd_handle *h,
struct content_entry *content,
struct ccn_charbuf *flat)
{
struct ccny *y = NULL;
int res;
y = ccny_from_cookie(h->content_tree, content->accession);
res = ccn_flatname_compare(flat->buf, flat->length,
ccny_key(y), ccny_keylen(y));
return (res == CCN_STRICT_PREFIX || res == 0);
}
/**
* Advance to the next entry in the nametree
*/
static struct content_entry *
content_next(struct ccnd_handle *h, struct content_entry *content)
{
struct ccny *y = NULL;
if (content == NULL)
return(NULL);
y = ccny_from_cookie(h->content_tree, content->accession);
if (y == NULL)
return(NULL);
y = ccny_next(y);
if (y == NULL)
return(NULL);
return(ccny_payload(y));
}
static int
ex_index_cmp(const unsigned char *a, size_t alen,
const unsigned char *b, size_t blen)
{
/* Just use the lengths for this compare, ignore the pointers */
/* These are times in seconds since ccnd start, so no overflow worries. */
return((int)alen - (int)blen);
}
/**