aboutsummaryrefslogtreecommitdiffstats
path: root/lib/src/face.c
blob: 6d0d9c4866059faa011730db73ddc3560600afc5 (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
/*
 * Copyright (c) 2017-2019 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 face.c
 * \brief Implementation of face abstraction
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <hicn/face.h>
#include <hicn/util/token.h>

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


/* Netdevice */

const char * _netdevice_type_str[] = {
#define _(x) [NETDEVICE_TYPE_ ## x] = STRINGIZE(x),
foreach_netdevice_type
#undef _
};

netdevice_t *
netdevice_create_from_index(u32 index)
{
    netdevice_t * netdevice = malloc(sizeof(netdevice_t));
    if (!netdevice)
        goto ERR_MALLOC;

    int rc = netdevice_set_index(netdevice, index);
    if (rc < 0)
        goto ERR_INIT;

    return netdevice;

ERR_INIT:
    free(netdevice);
ERR_MALLOC:
    return NULL;
}

netdevice_t *
netdevice_create_from_name(const char * name)
{
    netdevice_t * netdevice = malloc(sizeof(netdevice_t));
    if (!netdevice)
        goto ERR_MALLOC;

    int rc = netdevice_set_name(netdevice, name);
    if (rc < 0)
        goto ERR_INIT;

    return netdevice;

ERR_INIT:
    free(netdevice);
ERR_MALLOC:
    return NULL;
}

/**
 * \brief Update the index of the netdevice based on the name
 */
int
netdevice_update_index(netdevice_t * netdevice)
{
    netdevice->index = if_nametoindex(netdevice->name);
    if (netdevice->index == 0)
        return -1;
    return 0;
}

int
netdevice_update_name(netdevice_t * netdevice)
{
    if (!if_indextoname(netdevice->index, netdevice->name))
        return -1;
    return 0;
}

void
netdevice_free(netdevice_t * netdevice)
{
    free(netdevice);
}

int
netdevice_get_index(const netdevice_t * netdevice, u32 * index)
{
    if (netdevice->index == 0)
        return -1;
    *index = netdevice->index;
    return 0;
}

int
netdevice_set_index(netdevice_t * netdevice, u32 index)
{
    netdevice->index = index;
    return netdevice_update_name(netdevice);
}

int
netdevice_get_name(const netdevice_t * netdevice, const char ** name)
{
    if (netdevice->name[0] == '\0')
        return -1;
    *name = netdevice->name;
    return 0;
}

int
netdevice_set_name(netdevice_t * netdevice, const char * name)
{
    memset(netdevice->name, 0, sizeof(netdevice->name));
    int rc = snprintf(netdevice->name, IFNAMSIZ, "%s", name);
    if (rc < 0)
        return -1;
    if (rc >= IFNAMSIZ)
        return -2; /* truncated */
    return netdevice_update_index(netdevice);
}

int
netdevice_cmp(const netdevice_t * nd1, const netdevice_t * nd2)
{
    return (nd1->index - nd2->index);
}


/* Face state */

const char * _face_state_str[] = {
#define _(x) [FACE_STATE_ ## x] = STRINGIZE(x),
foreach_face_state
#undef _
};


/* Face type */

const char * _face_type_str[] = {
#define _(x) [FACE_TYPE_ ## x] = STRINGIZE(x),
foreach_face_type
#undef _
};


/* Face */

int
face_initialize(face_t * face)
{
    memset(face, 0, sizeof(face_t));
    return 1;
}

int
face_initialize_udp(face_t * face, const char * interface_name, const
        ip_address_t * local_addr, u16 local_port,
        const ip_address_t * remote_addr, u16 remote_port,
        int family)
{
    if (!local_addr)
        return -1;

    *face = (face_t) {
        .type = FACE_TYPE_UDP,
        .family = family,
        .local_addr = *local_addr,
        .local_port = local_port,
        .remote_addr = remote_addr ? *remote_addr : IP_ADDRESS_EMPTY,
        .remote_port = remote_port,
    };

    snprintf(face->netdevice.name, IFNAMSIZ, "%s", interface_name);

    return 1;
}

int
face_initialize_udp_sa(face_t * face, const char * interface_name,
        const struct sockaddr * local_addr,
        const struct sockaddr * remote_addr)
{
    if (!local_addr)
        return -1;

    if (remote_addr && (local_addr->sa_family != remote_addr->sa_family))
        return -1;

    switch (local_addr->sa_family) {
        case AF_INET:
            {
            struct sockaddr_in *lsai = (struct sockaddr_in *)local_addr;
            struct sockaddr_in *rsai = (struct sockaddr_in *)remote_addr;
            *face = (face_t) {
                .type = FACE_TYPE_UDP,
                .family = AF_INET,
                .local_addr.v4.as_inaddr = lsai->sin_addr,
                .local_port = lsai ? ntohs(lsai->sin_port) : 0,
                .remote_addr = IP_ADDRESS_EMPTY,
                .remote_port = rsai ? ntohs(rsai->sin_port) : 0,
            };
            if (rsai)
                face->remote_addr.v4.as_inaddr = rsai->sin_addr;
            }
            break;
        case AF_INET6:
            {
            struct sockaddr_in6 *lsai = (struct sockaddr_in6 *)local_addr;
            struct sockaddr_in6 *rsai = (struct sockaddr_in6 *)remote_addr;
            *face = (face_t) {
                .type = FACE_TYPE_UDP,
                .family = AF_INET6,
                .local_addr.v6.as_in6addr = lsai->sin6_addr,
                .local_port = lsai ? ntohs(lsai->sin6_port) : 0,
                .remote_addr = IP_ADDRESS_EMPTY,
                .remote_port = rsai ? ntohs(rsai->sin6_port) : 0,
            };
            if (rsai)
                face->remote_addr.v6.as_in6addr = rsai->sin6_addr;
            }
            break;
        default:
            return -1;
    }

    snprintf(face->netdevice.name, IFNAMSIZ, "%s", interface_name);

    return 1;
}

face_t * face_create()
{
    face_t * face = calloc(1, sizeof(face_t));
    return face;
}

face_t * face_create_udp(const char * interface_name,
        const ip_address_t * local_addr, u16 local_port,
        const ip_address_t * remote_addr, u16 remote_port, int family)
{
    face_t * face = face_create();
    if (face_initialize_udp(face, interface_name, local_addr, local_port, remote_addr, remote_port, family) < 0)
        goto ERR_INIT;
    return face;

ERR_INIT:
    free(face);
    return NULL;
}

face_t * face_create_udp_sa(const char * interface_name,
        const struct sockaddr * local_addr,
        const struct sockaddr * remote_addr)
{
    face_t * face = face_create();
    if (face_initialize_udp_sa(face, interface_name, local_addr, remote_addr) < 0)
        goto ERR_INIT;
    return face;

ERR_INIT:
    free(face);
    return NULL;
}

void face_free(face_t * face)
{
    free(face);
}

/**
 * \brief Compare two faces
 * \param [in] f1 - First face
 * \param [in] f2 - Second face
 * \return whether faces are equal, ie both their types are parameters are
 * equal.
 *
 * NOTE: this function implements a partial order.
 */
int
face_cmp(const face_t * f1, const face_t * f2)
{

    int ret = f1->type - f2->type;
    if (ret != 0)
        return ret;

    ret = f1->family - f2->family;
    if (ret != 0)
        return ret;

    /*
     * FIXME As hicn-light API might not return the netdevice, we can discard the
     * comparison when one of the two is not set for now...
     */
    if ((f1->netdevice.index != 0) && (f2->netdevice.index != 0)) {
        ret = netdevice_cmp(&f1->netdevice, &f2->netdevice);
        if (ret != 0)
            return ret;
    }

    switch(f1->type) {
        case FACE_TYPE_HICN:
            ret = ip_address_cmp(&f1->local_addr, &f2->local_addr, f1->family);
            if (ret != 0)
                return ret;

            ret = ip_address_cmp(&f1->remote_addr, &f2->remote_addr, f1->family);
            if (ret != 0)
                return ret;

            break;

        case FACE_TYPE_TCP:
        case FACE_TYPE_UDP:
            ret = ip_address_cmp(&f1->local_addr, &f2->local_addr, f1->family);
            if (ret != 0)
                return ret;

            ret = f1->local_port - f2->local_port;
            if (ret != 0)
                return ret;

            ret = ip_address_cmp(&f1->remote_addr, &f2->remote_addr, f1->family);
            if (ret != 0)
                return ret;

            ret = f1->remote_port - f2->remote_port;
            if (ret != 0)
                return ret;

            break;
        default:
            break;
    }

    return 0;
}

/* /!\ Please update constants in header file upon changes */
size_t
face_snprintf(char * s, size_t size, const face_t * face)
{
    switch(face->type) {
        case FACE_TYPE_HICN:
        {
            char local[MAXSZ_IP_ADDRESS];
            char remote[MAXSZ_IP_ADDRESS];
            char tags[MAXSZ_POLICY_TAGS];

            ip_address_snprintf(local, MAXSZ_IP_ADDRESS,
                    &face->local_addr,
                    face->family);
            ip_address_snprintf(remote, MAXSZ_IP_ADDRESS,
                    &face->remote_addr,
                    face->family);
            policy_tags_snprintf(tags, MAXSZ_POLICY_TAGS, face->tags);
            return snprintf(s, size, "%s [%s -> %s] [%s]",
                    face_type_str(face->type),
                    local,
                    remote,
                    tags);
        }
        case FACE_TYPE_UNDEFINED:
        case FACE_TYPE_TCP:
        case FACE_TYPE_UDP:
        {
            char local[MAXSZ_IP_ADDRESS];
            char remote[MAXSZ_IP_ADDRESS];
            char tags[MAXSZ_POLICY_TAGS];

            ip_address_snprintf(local, MAXSZ_IP_ADDRESS,
                    &face->local_addr,
                    face->family);
            ip_address_snprintf(remote, MAXSZ_IP_ADDRESS,
                    &face->remote_addr,
                    face->family);
            policy_tags_snprintf(tags, MAXSZ_POLICY_TAGS, face->tags);

            return snprintf(s, size, "%s [%s:%d -> %s:%d] [%s]",
                    face_type_str(face->type),
                    local,
                    face->local_port,
                    remote,
                    face->remote_port,
                    tags);
        }
        default:
            return -1;
    }

}

policy_tags_t face_get_tags(const face_t * face)
{
    return face->tags;
}

int
face_set_tags(face_t * face, policy_tags_t tags)
{
    face->tags = tags;
    return 1;
}