aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-light/src/hicn/core/msgbuf.h
blob: 72480b535292f6abfab9cfc91cdcc4c409478409 (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
/*
 * Copyright (c) 2020 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 msgbuf.h
 * \brief hICN message buffer
 */

#ifndef HICNLIGHT_MSGBUF
#define HICNLIGHT_MSGBUF

#include "name.h"
#include "ticks.h"
#include "messageHandler.h"
#include "../utils/commands.h"

struct name_s;

#define MTU 1500
#define INVALID_MSGBUF_ID ~0ul

#define msgbuf_id_is_valid(msgbuf_id) (msgbuf_id != INVALID_MSGBUF_ID)

#define foreach_type     \
    _(UNDEFINED)                \
    _(INTEREST)                 \
    _(DATA)                     \
    _(WLDR_NOTIFICATION)        \
    _(MAPME)                    \
    _(COMMAND)                  \
    _(N)

typedef enum {
#define _(x) MSGBUF_TYPE_ ## x,
    foreach_type
#undef _
} msgbuf_type_t;

typedef struct {
  unsigned length;
  msgbuf_type_t type;
  unsigned connection_id;
  Ticks recv_ts;
  unsigned refs;
  union {
    /* Interest or data packet */
    struct {
        struct name_s * name;
    } id;
    /* Command packet */
    struct {
        command_type_t type;
    } command;
  };
  uint8_t packet[MTU];
} msgbuf_t;

#define msgbuf_get_name(M) ((M)->id.name)
#define msgbuf_get_connection_id(M) ((M)->connection_id)
#define msgbuf_get_type(M) ((M)->type)
#define msgbuf_has_wldr(M) (messageHandler_HasWldr((M)->packet))
#define msgbuf_get_len(M) ((M)->length)
#define msgbuf_get_packet(M) ((M)->packet)
#define msgbuf_get_command_type(M) ((M)->command.type)                          \

// XXX TODO EXPLAIN THE CONSTANT
#define msgbuf_get_lifetime(M) (NSEC_TO_TICKS(messageHandler_GetInterestLifetime((M)->packet) * 1000000ULL))

#define msgbuf_is_probe(M) messageHandler_IsAProbe((M)->packet)

/* Path label */

#define msgbuf_get_pathlabel(M) (messageHandler_GetPathLabel((M)->packet))
#define msgbuf_set_pathlabel(M, label) (messageHandler_SetPathLabel((M)->packet, label))
#define msgbuf_update_pathlabel(M, outface) (messageHandler_SetPathLabel((M)->packet, outface))
#define msgbuf_reset_pathlabel(M) (messageHandler_ResetPathLabel((M)->packet))

/* WLDR */

#define msgbuf_reset_wldr_label(M) (messageHandler_ResetWldrLabel((M)->packet))
#define msgbuf_get_wldr_label(M) (messageHandler_GetWldrLabel((M)->packet))
#define msgbuf_get_wldr_expected_label(M) (messageHandler_GetWldrExpectedLabel((M)->packet))
#define msgbuf_get_wldr_last_received(M) (messageHandler_GetWldrLastReceived((M)->packet))
#define msgbuf_set_wldr_label(M, label) (messageHandler_GetWldrLabel((M)->packet, label))

#endif /* HICNLIGHT_MSGBUF */