aboutsummaryrefslogtreecommitdiffstats
path: root/ctrl/libhicnctrl/src/modules/hicn_light/route.c
blob: 38510704cbcfd41eb52eefa076d8a1a6e57e7380 (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
/*
 * Copyright (c) 2021-2022 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 modules/hicn_light/route.c
 * \brief Implementation of route object VFT for hicn_light.
 */

#include <assert.h>
#include <hicn/ctrl/api.h>
#include <hicn/util/log.h>
#include "base.h"
#include "route.h"
#include <hicn/ctrl/hicn-light.h>

#include "../../object_private.h"

static int hicnlight_route_parse(const uint8_t *buffer, size_t size,
                                 hc_route_t *route) {
  if (size != sizeof(cmd_route_list_item_t)) return -1;
  cmd_route_list_item_t *item = (cmd_route_list_item_t *)buffer;

  if (!IS_VALID_NAME(item->face_name)) {
    ERROR("[hc_route_parse] Invalid face_name received");
    return -1;
  }

  if (!IS_VALID_ID(item->face_id)) {
    ERROR("[hc_route_parse] Invalid face_id received");
    return -1;
  }

  if (!IS_VALID_FAMILY(item->family)) {
    ERROR("[hc_route_parse] Invalid family received");
    return -1;
  }

  if (!IS_VALID_ADDRESS(item->remote_addr)) {
    ERROR("[hc_route_parse] Invalid address received");
    return -1;
  }

  // LEN
  // COST

  *route = (hc_route_t){
      .face_name = "", /* This is not reported back */
      .face_id = item->face_id,
      .family = (int)(item->family),
      .remote_addr = item->remote_addr,
      .len = item->len,
      .cost = item->cost,
  };

  if (hc_route_validate(route, false) < 0) return -1;
  return 0;
}

int _hicnlight_route_parse(const uint8_t *buffer, size_t size,
                           hc_object_t *object) {
  return hicnlight_route_parse(buffer, size, &object->route);
}

/* ROUTE CREATE */

int hicnlight_route_serialize_create(const hc_object_t *object,
                                     uint8_t *packet) {
  const hc_route_t *route = &object->route;
  int rc;

  msg_route_add_t *msg = (msg_route_add_t *)packet;
  *msg = (msg_route_add_t){.header =
                               {
                                   .message_type = REQUEST_LIGHT,
                                   .command_id = COMMAND_TYPE_ROUTE_ADD,
                                   .length = 1,
                                   .seq_num = 0,
                               },
                           .payload = {
                               .address = route->remote_addr,
                               .cost = route->cost,
                               .family = route->family,
                               .len = route->len,
                           }};

  /*
   * The route commands expects the ID or name as part of the
   * symbolic_or_connid attribute.
   */
  if (route->face_name[0] != '\0') {
    rc = snprintf(msg->payload.symbolic_or_connid, SYMBOLIC_NAME_LEN, "%s",
                  route->face_name);
  } else {
    rc = snprintf(msg->payload.symbolic_or_connid, SYMBOLIC_NAME_LEN, "%d",
                  route->face_id);
  }

  if ((rc < 0) || (rc >= SYMBOLIC_NAME_LEN)) return -1;

  return sizeof(msg_route_add_t);
}

/* ROUTE DELETE */

int hicnlight_route_serialize_delete(const hc_object_t *object,
                                     uint8_t *packet) {
  const hc_route_t *route = &object->route;
  int rc;

  msg_route_remove_t *msg = (msg_route_remove_t *)packet;
  memset(msg, 0, sizeof(msg_route_remove_t));
  *msg = (msg_route_remove_t){.header =
                                  {
                                      .message_type = REQUEST_LIGHT,
                                      .command_id = COMMAND_TYPE_ROUTE_REMOVE,
                                      .length = 1,
                                      .seq_num = 0,
                                  },
                              .payload = {
                                  .family = (uint8_t)route->family,
                                  .len = route->len,
                              }};

  /*
   * Direct copy as part of the previous assignment does not work correctly...
   * to be investigated
   */
  memcpy(&msg->payload.address, &route->remote_addr, sizeof(hicn_ip_address_t));

  /*
   * The route commands expects the ID or name as part of the
   * symbolic_or_connid attribute.
   */
  if (route->face_name[0] != '\0') {
    rc = snprintf(msg->payload.symbolic_or_connid, SYMBOLIC_NAME_LEN, "%s",
                  route->face_name);
  } else {
    rc = snprintf(msg->payload.symbolic_or_connid, SYMBOLIC_NAME_LEN, "%d",
                  route->face_id);
  }

  if ((rc < 0) || (rc >= SYMBOLIC_NAME_LEN)) return -1;

  return sizeof(msg_route_remove_t);
}

/* ROUTE LIST */

int hicnlight_route_serialize_list(const hc_object_t *object, uint8_t *packet) {
  msg_route_list_t *msg = (msg_route_list_t *)packet;
  *msg = (msg_route_list_t){.header = {
                                .message_type = REQUEST_LIGHT,
                                .command_id = COMMAND_TYPE_ROUTE_LIST,
                                .length = 0,
                                .seq_num = 0,
                            }};

  return sizeof(msg_header_t);  // Do not use msg_route_list_t
}

int hicnlight_route_serialize_set(const hc_object_t *object, uint8_t *packet) {
  return -1;
}

DECLARE_MODULE_OBJECT_OPS(hicnlight, route);