aboutsummaryrefslogtreecommitdiffstats
path: root/lib/src/packet.c
blob: bebfad23e7924f9fd9c73a623187e5fcddd605d2 (plain)
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
/*
 * Copyright (c) 2017-2021 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @file packet.c
 * @brief Implementation of the compatibility layer.
 */
#ifndef _WIN32
#include <netinet/in.h>
#endif
#include <string.h> // memset
#include <stddef.h> // offsetof

#include <hicn/common.h>
#include <hicn/packet.h>
#include <hicn/error.h>
#include <hicn/name.h>
#include <hicn/util/log.h>
#include "ops.h"

#define member_size(type, member) sizeof (((type *) 0)->member)
#define ARRAY_SIZE(a)		  (sizeof (a) / sizeof (*(a)))

#define HICN_NAME_COMPONENT_SIZE 2

hicn_packet_format_t
hicn_packet_get_format (const hicn_packet_buffer_t *pkbuf)
{
  return pkbuf->format;
}

void
hicn_packet_set_format (hicn_packet_buffer_t *pkbuf,
			hicn_packet_format_t format)
{
  pkbuf->format = format;
}

hicn_packet_type_t
hicn_packet_get_type (const hicn_packet_buffer_t *pkbuf)
{
  return pkbuf->type;
}

void
hicn_packet_initialize_type (hicn_packet_buffer_t *pkbuf,
			     hicn_packet_type_t type)
{
  assert (pkbuf->format != HICN_PACKET_FORMAT_NONE);
  pkbuf->type = type;
  CALL (set_type, pkbuf, type);
}

void
hicn_packet_set_type (hicn_packet_buffer_t *pkbuf, hicn_packet_type_t type)
{
  pkbuf->type = type;
}

bool
hicn_packet_is_interest (const hicn_packet_buffer_t *pkbuf)
{
  return pkbuf->type == HICN_PACKET_TYPE_INTEREST;
}

bool
hicn_packet_is_data (const hicn_packet_buffer_t *pkbuf)
{
  return pkbuf->type == HICN_PACKET_TYPE_DATA;
}

bool
hicn_packet_is_undefined (const hicn_packet_buffer_t *pkbuf)
{
  return pkbuf->type == HICN_PACKET_TYPE_UNDEFINED;
}

int
hicn_packet_init_header (hicn_packet_buffer_t *pkbuf,
			 size_t additional_header_size)
{
  if (hicn_packet_is_undefined (pkbuf))
    return HICN_LIB_ERROR_UNEXPECTED;
  if (hicn_packet_get_format (pkbuf) == HICN_PACKET_FORMAT_NONE)
    return HICN_LIB_ERROR_UNEXPECTED;
  if (!pkbuf_get_header (pkbuf))
    return HICN_LIB_ERROR_UNEXPECTED;
  pkbuf->len = 0;
  pkbuf->payload = 0;

  int rc = CALL (init_packet_header, pkbuf);

  /*
   * Additional header size is there for the signature, and assumes the AH
   * header is always located at the end...
   */
  pkbuf->len += additional_header_size;
  pkbuf->payload += additional_header_size;

  return rc;
}

int
hicn_packet_reset (hicn_packet_buffer_t *pkbuf)
{
  memset (pkbuf, 0, sizeof (hicn_packet_buffer_t));
  hicn_packet_set_format (pkbuf, HICN_PACKET_FORMAT_NONE);
  hicn_packet_set_type (pkbuf, HICN_PACKET_TYPE_UNDEFINED);
  hicn_packet_set_len (pkbuf, 0);

  return HICN_LIB_ERROR_NONE;
}

int
hicn_packet_analyze (hicn_packet_buffer_t *pkbuf)
{
  u8 *header = pkbuf_get_header (pkbuf);
  u8 protocol;
  u16 offset = 0;
  bool has_signature;
  size_t signature_size;
  int rc;

  /* Bootstrap: assume IP packet, and get version from header */
  switch (HICN_IP_VERSION (pkbuf_get_header (pkbuf)))
    {
    case 4:
      protocol = IPPROTO_IP;
      break;
    case 6:
      protocol = IPPROTO_IPV6;
      break;
    case 9:
      protocol = IPPROTO_ENCAP; // new
      break;
    default:
      goto ERR;
    }

  hicn_packet_format_t *format = &pkbuf->format;
  for (unsigned i = 0; i < HICN_PACKET_FORMAT_SIZE; i++)
    {
      HICN_PACKET_FORMAT_SET (*format, i, protocol);

      /* Next protocol + increment offset */
      switch (protocol)
	{

	/*
	 * All packets either start with IPv4 or IPv6, so we take the
	 * opportunity to update packet length there
	 */
	case IPPROTO_IP:
	  {
	    if (i > 0)
	      goto ERR;
#ifdef OPAQUE_IP
	    pkbuf->ipv4 = offset;
#else
	    assert (offset == 0);
#endif /* OPAQUE_IP */
	    _ipv4_header_t *ipv4 = (_ipv4_header_t *) (header + offset);
	    protocol = ipv4->protocol;
	    offset += IPV4_HDRLEN;

	    // hicn_packet_set_len (pkbuf, htons (ipv4->len));
	    if (hicn_packet_get_len (pkbuf) != htons (ipv4->len))
	      {
		ERROR ("Invalid packet size in IPv4 header %d != %d",
		       htons (ipv4->len), hicn_packet_get_len (pkbuf));
		goto ERR;
	      }
	    break;
	  }
	case IPPROTO_IPV6:
	  {
	    if (i > 0)
	      goto ERR;
#ifdef OPAQUE_IP
	    pkbuf->ipv6 = offset;
#else
	    assert (offset == 0);
#endif /* OPAQUE_IP */
	    _ipv6_header_t *ipv6 = (_ipv6_header_t *) (header + offset);
	    protocol = ipv6->nxt;
	    offset += IPV6_HDRLEN;
	    // hicn_packet_set_len (pkbuf, IPV6_HDRLEN + htons (ipv6->len));
	    if (hicn_packet_get_len (pkbuf) != IPV6_HDRLEN + htons (ipv6->len))
	      {
		ERROR ("Invalid packet size in IPv6 header %d != %d",
		       IPV6_HDRLEN + htons (ipv6->len),
		       hicn_packet_get_len (pkbuf));
		goto ERR;
	      }
	    break;
	  }
	case IPPROTO_TCP:
	  pkbuf->tcp = offset;
	  /* After TCP, we might eventually have a AH header */
	  rc = CALL_CHILD (has_signature, pkbuf, i - 1, &has_signature);
	  if (rc < 0)
	    goto ERR;
	  protocol = has_signature ? IPPROTO_AH : IPPROTO_NONE;
	  offset += TCP_HDRLEN;
	  break;
	case IPPROTO_UDP:
	  pkbuf->udp = offset;
	  protocol = IPPROTO_ENCAP;
	  offset += UDP_HDRLEN;
	  break;
	case IPPROTO_ICMP:
	case IPPROTO_ICMPV6:
	  pkbuf->icmp = offset;
	  /* After ICMP, we might eventually have a AH header */
	  // CALL_CHILD (has_signature, pkbuf, i - 1, &has_signature);
	  protocol = /* has_signature ? IPPROTO_AH : */ IPPROTO_NONE;
	  offset += ICMP_HDRLEN;
	  break;

	case IPPROTO_ENCAP:
	  pkbuf->newhdr = offset;
	  /* After ENCAP, we might eventually have a AH header */
	  rc = CALL_CHILD (has_signature, pkbuf, i - 1, &has_signature);
	  if (rc < 0)
	    goto ERR;
	  protocol = has_signature ? IPPROTO_AH : IPPROTO_NONE;
	  offset += NEW_HDRLEN;
	  break;

	case IPPROTO_AH:
	  pkbuf->ah = offset;
	  protocol = IPPROTO_NONE;
	  offset += AH_HDRLEN;

	  rc = CALL_CHILD (get_signature_size, pkbuf, i - 1, &signature_size);
	  if (rc < 0)
	    goto ERR;
	  offset += signature_size;
	  break;

	case IPPROTO_NONE:
	  /* NONE until we terminate the list of protocols */
	  break;

	default:
	  goto ERR;
	}
    }
  pkbuf->payload = offset;

  rc = CALL (get_type, pkbuf, (hicn_packet_type_t *) (&pkbuf->type));
  if (rc < 0)
    goto ERR;

  return HICN_LIB_ERROR_NONE;

ERR:
  pkbuf->format = HICN_PACKET_FORMAT_NONE;
  pkbuf->type = HICN_PACKET_TYPE_UNDEFINED;
  return HICN_LIB_ERROR_UNEXPECTED;
}

int
hicn_packet_set_buffer (hicn_packet_buffer_t *pkbuf, u8 *buffer,
			uint16_t buffer_size, uint16_t len)
{
  pkbuf_set_header (pkbuf, buffer);
  pkbuf->buffer_size = buffer_size;
  pkbuf->len = len;

  return HICN_LIB_ERROR_NONE;
}

int
hicn_packet_get_buffer (const hicn_packet_buffer_t *pkbuf, u8 **buffer,
			uint16_t *buffer_size, uint16_t *len)
{
  *buffer = pkbuf_get_header (pkbuf);
  *buffer_size = pkbuf->buffer_size;
  *len = pkbuf->len;
  return HICN_LIB_ERROR_NONE;
}

size_t
hicn_packet_get_len (const hicn_packet_buffer_t *pkbuf)
{
  return pkbuf->len;
}

int
hicn_packet_set_len (hicn_packet_buffer_t *pkbuf, size_t len)
{
  pkbuf->len = len;
  return HICN_LIB_ERROR_NONE;
}

int
hicn_packet_get_header_len (const hicn_packet_buffer_t *pkbuf, size_t *len)
{
  *len = pkbuf->payload;
  return HICN_LIB_ERROR_NONE;
}

int
hicn_packet_get_payload_len (const hicn_packet_buffer_t *pkbuf, size_t *len)
{
  *len = hicn_packet_get_len (pkbuf) - pkbuf->payload;
  return HICN_LIB_ERROR_NONE;
}

// XXX this fails with chained membufs in libtransport
int
hicn_packet_set_payload (const hicn_packet_buffer_t *pkbuf, const u8 *payload,
			 u16 payload_len)
{
  memcpy (pkbuf_get_header (pkbuf) + pkbuf->payload, payload, payload_len);

  return CALL (set_payload_len, pkbuf, payload_len);
}

int
hicn_packet_get_payload (const hicn_packet_buffer_t *pkbuf, u8 **payload,
			 size_t *payload_size, bool hard_copy)
{
  *payload_size = hicn_packet_get_len (pkbuf) - pkbuf->payload;

  if (hard_copy)
    {
      memcpy (payload, pkbuf_get_header (pkbuf) + pkbuf->payload,
	      *payload_size);
    }
  else
    {
      *payload = pkbuf_get_header (pkbuf) + pkbuf->payload;
    }

  return HICN_LIB_ERROR_NONE;
}

/* Header fields manipulation */

int
hicn_packet_get_header_length_from_format (hicn_packet_format_t format,
					   size_t *header_length)
{
  *header_length = 0;
  HICN_PACKET_FORMAT_ENUMERATE (format, i, protocol, {
    *header_length += hicn_ops_vft[protocol]->header_len;
  });
  return HICN_LIB_ERROR_NONE;
}

int
hicn_packet_compute_checksum (const hicn_packet_buffer_t *pkbuf)
{
  return CALL (update_checksums, pkbuf, 0, ~0);
}

int
hicn_packet_compute_header_checksum (const hicn_packet_buffer_t *pkbuf,
				     u16 init_sum)
{
  /* payload_len == 0: ignore payload */
  return CALL (update_checksums, pkbuf, init_sum, 0);
}

int
hicn_packet_check_integrity_no_payload (const hicn_packet_buffer_t *pkbuf,
					u16 init_sum)
{
  return CALL (verify_checksums, pkbuf, init_sum, 0);
}

int
hicn_packet_set_payload_length (const hicn_packet_buffer_t *pkbuf,
				const size_t payload_len)
{
  return CALL (set_payload_len, pkbuf, payload_len);
}

int
hicn_packet_compare (const hicn_packet_buffer_t *pkbuf1,
		     const hicn_packet_buffer_t *pkbuf2)
{
  hicn_packet_format_t format1 = hicn_packet_get_format (pkbuf1);
  hicn_packet_format_t format2 = hicn_packet_get_format (pkbuf2);

  if (format1 != format2)
    return HICN_LIB_ERROR_UNEXPECTED;

  size_t len1 = hicn_packet_get_len (pkbuf1);
  size_t len2 = hicn_packet_get_len (pkbuf2);

  if (len1 != len2)
    return HICN_LIB_ERROR_UNEXPECTED;

  return memcmp (pkbuf_get_header (pkbuf1), pkbuf_get_header (pkbuf2), len1);
}

int
hicn_packet_get_name (const hicn_packet_buffer_t *pkbuf, hicn_name_t *name)
{
  switch (pkbuf->type)
    {
    case HICN_PACKET_TYPE_INTEREST:
      return hicn_interest_get_name (pkbuf, name);
    case HICN_PACKET_TYPE_DATA:
      return hicn_data_get_name (pkbuf, name);
    default:
      return HICN_LIB_ERROR_UNEXPECTED;
    }
}

int
hicn_packet_set_name (const hicn_packet_buffer_t *pkbuf,
		      const hicn_name_t *name)
{
  switch (pkbuf->type)
    {
    case HICN_PACKET_TYPE_INTEREST:
      return hicn_interest_set_name (pkbuf, name);
    case HICN_PACKET_TYPE_DATA:
      return hicn_data_set_name (pkbuf, name);
    default:
      return HICN_LIB_ERROR_UNEXPECTED;
    }
}

int
hicn_packet_get_locator (const hicn_packet_buffer_t *pkbuf,
			 hicn_ip_address_t *address)
{
  switch (pkbuf->type)
    {
    case HICN_PACKET_TYPE_INTEREST:
      return hicn_interest_get_locator (pkbuf, address);
    case HICN_PACKET_TYPE_DATA:
      return hicn_data_get_locator (pkbuf, address);
    default:
      return HICN_LIB_ERROR_UNEXPECTED;
    }
}

int
hicn_packet_set_locator (const hicn_packet_buffer_t *pkbuf,
			 const hicn_ip_address_t *address)
{
  switch (pkbuf->type)
    {
    case HICN_PACKET_TYPE_INTEREST:
      return hicn_interest_set_locator (pkbuf, address);
    case HICN_PACKET_TYPE_DATA:
      return hicn_data_set_locator (pkbuf, address);
    default:
      return HICN_LIB_ERROR_UNEXPECTED;
    }
}

int
hicn_packet_get_signature_size (const hicn_packet_buffer_t *pkbuf,
				size_t *bytes)
{
  return CALL (get_signature_size, pkbuf, bytes);
}

int
hicn_packet_set_signature_size (const hicn_packet_buffer_t *pkbuf,
				size_t bytes)
{
  return CALL (set_signature_size, pkbuf, bytes);
}

int
hicn_packet_get_signature_padding (const hicn_packet_buffer_t *pkbuf,
				   size_t *bytes)
{
  return CALL (get_signature_padding, pkbuf, bytes);
}

int
hicn_packet_set_signature_padding (const hicn_packet_buffer_t *pkbuf,
				   size_t bytes)
{
  return CALL (set_signature_padding, pkbuf, bytes);
}

int
hicn_packet_set_signature_timestamp (const hicn_packet_buffer_t *pkbuf,
				     uint64_t signature_timestamp)
{
  return CALL (set_signature_timestamp, pkbuf, signature_timestamp);
}

int
hicn_packet_get_signature_timestamp (const hicn_packet_buffer_t *pkbuf,
				     uint64_t *signature_timestamp)
{
  return CALL (get_signature_timestamp, pkbuf, signature_timestamp);
}

int
hicn_packet_set_validation_algorithm (const hicn_packet_buffer_t *pkbuf,
				      uint8_t validation_algorithm)
{
  return CALL (set_validation_algorithm, pkbuf, validation_algorithm);
}

int
hicn_packet_get_validation_algorithm (const hicn_packet_buffer_t *pkbuf,
				      uint8_t *validation_algorithm)
{
  return CALL (get_validation_algorithm, pkbuf, validation_algorithm);
}

int
hicn_packet_set_key_id (const hicn_packet_buffer_t *pkbuf, uint8_t *key_id,
			size_t key_len)
{
  return CALL (set_key_id, pkbuf, key_id, key_len);
}

int
hicn_packet_get_key_id (const hicn_packet_buffer_t *pkbuf, uint8_t **key_id,
			uint8_t *key_id_len)
{
  return CALL (get_key_id, pkbuf, key_id, key_id_len);
}

int
hicn_packet_get_lifetime (const hicn_packet_buffer_t *pkbuf,
			  hicn_lifetime_t *lifetime)
{
  return CALL (get_lifetime, pkbuf, lifetime);
}

int
hicn_packet_set_lifetime (const hicn_packet_buffer_t *pkbuf,
			  hicn_lifetime_t lifetime)
{
  return CALL (set_lifetime, pkbuf, lifetime);
}

int
hicn_packet_get_payload_type (const hicn_packet_buffer_t *pkbuf,
			      hicn_payload_type_t *payload_type)
{
  return CALL (get_payload_type, pkbuf, payload_type);
}

int
hicn_packet_set_payload_type (const hicn_packet_buffer_t *pkbuf,
			      hicn_payload_type_t payload_type)
{
  return CALL (set_payload_type, pkbuf, payload_type);
}

int
hicn_packet_save_header (const hicn_packet_buffer_t *pkbuf, u8 *header,
			 size_t *header_len, bool copy_ah)
{
  hicn_packet_format_t format = hicn_packet_get_format (pkbuf);
  if (copy_ah || !HICN_PACKET_FORMAT_IS_AH (format))
    {
      int rc = hicn_packet_get_header_len (pkbuf, header_len);
      if (HICN_LIB_IS_ERROR (rc))
	return rc;
    }
  else
    {
      /* Copy up until the ah header (which we assume is last) */
      *header_len = pkbuf->ah;
    }

  memcpy (header, pkbuf_get_header (pkbuf), *header_len);

  return HICN_LIB_ERROR_NONE;
}

int
hicn_packet_load_header (const hicn_packet_buffer_t *pkbuf, const u8 *header,
			 size_t header_len)
{
  memcpy (pkbuf_get_header (pkbuf), header, header_len);

  return HICN_LIB_ERROR_NONE;
}

/* Interest */

int
hicn_interest_get_name (const hicn_packet_buffer_t *pkbuf, hicn_name_t *name)
{
  return CALL (get_interest_name, pkbuf, name);
}

int
hicn_interest_set_name (const hicn_packet_buffer_t *pkbuf,
			const hicn_name_t *name)
{
  return CALL (set_interest_name, pkbuf, name);
}

int
hicn_interest_get_locator (const hicn_packet_buffer_t *pkbuf,
			   hicn_ip_address_t *address)
{
  return CALL (get_interest_locator, pkbuf, address);
}

int
hicn_interest_set_locator (const hicn_packet_buffer_t *pkbuf,
			   const hicn_ip_address_t *address)
{
  return CALL (set_interest_locator, pkbuf, address);
}

int
hicn_interest_compare (const hicn_packet_buffer_t *pkbuf1,
		       const hicn_packet_buffer_t *pkbuf2)
{
  return hicn_packet_compare (pkbuf1, pkbuf2);
}

int
hicn_interest_get_lifetime (const hicn_packet_buffer_t *pkbuf,
			    hicn_lifetime_t *lifetime)
{
  return hicn_packet_get_lifetime (pkbuf, lifetime);
}

int
hicn_interest_set_lifetime (const hicn_packet_buffer_t *pkbuf,
			    hicn_lifetime_t lifetime)
{
  return hicn_packet_set_lifetime (pkbuf, lifetime);
}

int
hicn_interest_get_payload (const hicn_packet_buffer_t *pkbuf, u8 **payload,
			   size_t *payload_size, bool hard_copy)
{
  return hicn_packet_get_payload (pkbuf, payload, payload_size, hard_copy);
}

int
hicn_interest_set_payload (const hicn_packet_buffer_t *pkbuf,
			   const u8 *payload, size_t payload_len)
{
  return hicn_packet_set_payload (pkbuf, payload, (u16) payload_len);
}

int
hicn_interest_reset_for_hash (hicn_packet_buffer_t *pkbuf)
{
  return CALL (reset_interest_for_hash, pkbuf);
}

/* Data */

int
hicn_data_get_name (const hicn_packet_buffer_t *pkbuf, hicn_name_t *name)
{
  return CALL (get_data_name, pkbuf, name);
}

int
hicn_data_set_name (const hicn_packet_buffer_t *pkbuf, const hicn_name_t *name)
{
  return CALL (set_data_name, pkbuf, name);
}

int
hicn_data_get_locator (const hicn_packet_buffer_t *pkbuf,
		       hicn_ip_address_t *address)
{
  return CALL (get_data_locator, pkbuf, address);
}

int
hicn_data_set_locator (const hicn_packet_buffer_t *pkbuf,
		       const hicn_ip_address_t *address)
{
  return CALL (set_data_locator, pkbuf, address);
}

int
hicn_data_compare (const hicn_packet_buffer_t *pkbuf1,
		   const hicn_packet_buffer_t *pkbuf2)
{
  return hicn_packet_compare (pkbuf1, pkbuf2);
}

int
hicn_data_get_expiry_time (const hicn_packet_buffer_t *pkbuf,
			   hicn_lifetime_t *expiry_time)
{
  return hicn_packet_get_lifetime (pkbuf, expiry_time);
}

int
hicn_data_set_expiry_time (const hicn_packet_buffer_t *pkbuf,
			   hicn_lifetime_t expiry_time)
{
  return hicn_packet_set_lifetime (pkbuf, expiry_time);
}

/* Path label */

int
hicn_data_get_path_label (const hicn_packet_buffer_t *pkbuf,
			  hicn_path_label_t *path_label)
{
  return CALL (get_data_path_label, pkbuf, path_label);
}

int
hicn_get_path_label (const hicn_packet_buffer_t *pkbuf,
		     hicn_path_label_t *path_label)
{
  if (!hicn_packet_is_data (pkbuf))
    return INVALID_PATH_LABEL;
  return hicn_data_get_path_label (pkbuf, path_label);
}

int
hicn_data_set_path_label (const hicn_packet_buffer_t *pkbuf,
			  hicn_path_label_t path_label)
{
  return CALL (set_data_path_label, pkbuf, path_label);
}

int
hicn_data_set_payload (const hicn_packet_buffer_t *pkbuf, const u8 *payload,
		       size_t payload_len)
{
  return hicn_packet_set_payload (pkbuf, payload, (u16) payload_len);
}

int
hicn_data_get_payload (const hicn_packet_buffer_t *pkbuf, u8 **payload,
		       size_t *payload_size, bool hard_copy)
{
  return hicn_packet_get_payload (pkbuf, payload, payload_size, hard_copy);
}

int
hicn_data_reset_for_hash (hicn_packet_buffer_t *pkbuf)
{
  return CALL (reset_data_for_hash, pkbuf);
}

int
hicn_data_is_last (const hicn_packet_buffer_t *pkbuf, int *is_last)
{
  return CALL (is_last_data, pkbuf, is_last);
}

int
hicn_data_set_last (const hicn_packet_buffer_t *pkbuf)
{
  return CALL (set_last_data, pkbuf);
}

int
hicn_packet_get_signature (const hicn_packet_buffer_t *pkbuf,
			   uint8_t **sign_buf)
{
  return CALL (get_signature, pkbuf, sign_buf);
}

int
hicn_interest_rewrite (const hicn_packet_buffer_t *pkbuf,
		       const hicn_ip_address_t *addr_new,
		       hicn_ip_address_t *addr_old)
{
  return CALL (rewrite_interest, pkbuf, addr_new, addr_old);
}

int
hicn_data_rewrite (const hicn_packet_buffer_t *pkbuf,
		   const hicn_ip_address_t *addr_new,
		   hicn_ip_address_t *addr_old, const hicn_faceid_t face_id,
		   u8 reset_pl)
{
  return CALL (rewrite_data, pkbuf, addr_new, addr_old, face_id, reset_pl);
}

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */