summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/cdap_flow.c
blob: 3d1b2b228f433ff06fe30fbf8593377e44808e0d (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
/*
 * Ouroboros - Copyright (C) 2016 - 2017
 *
 * Normal IPC Process - Authenticated CDAP Flow Allocator
 *
 *    Sander Vrijders   <sander.vrijders@ugent.be>
 *    Dimitri Staessens <dimitri.staessens@ugent.be>
 *
 * This program 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 program 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#define OUROBOROS_PREFIX "cdap-flow"

#include <ouroboros/config.h>
#include <ouroboros/dev.h>
#include <ouroboros/logs.h>

#include "cdap_flow.h"

#include <stdlib.h>
#include <assert.h>

static void cdap_flow_destroy(struct cdap_flow * flow)
{
        assert(flow);

        if (flow->ci != NULL)
                cdap_destroy(flow->ci);
        if (flow->info != NULL) {
                conn_info_fini(flow->info);
                free(flow->info);
        }

        free(flow);
}

struct cdap_flow * cdap_flow_arr(int                     fd,
                                 int                      resp,
                                 enum pol_cacep           pc,
                                 const struct conn_info * info)
{
        struct cdap_flow *  flow;

        if (flow_alloc_resp(fd, resp) < 0) {
                log_err("Could not respond to new flow.");
                return NULL;
        }

        if (resp)
                return NULL;

        flow = malloc(sizeof(*flow));
        if (flow == NULL) {
                log_err("Failed to malloc.");
                return NULL;
        }

        flow->fd = fd;
        flow->ci = NULL;

        flow->info = cacep_auth_wait(fd, pc, info, NULL);
        if (flow->info == NULL) {
                log_err("Other side failed to authenticate.");
                cdap_flow_destroy(flow);
                return NULL;
        }

        flow->ci = cdap_create(fd);
        if (flow->ci == NULL) {
                log_err("Failed to create CDAP instance.");
                cdap_flow_destroy(flow);
                return NULL;
        }

        return flow;
}

struct cdap_flow * cdap_flow_alloc(const char *             dst_name,
                                   qosspec_t *              qs,
                                   enum pol_cacep           pc,
                                   const struct conn_info * info)
{
        struct cdap_flow *  flow;
        int                 fd;

        log_dbg("Allocating flow to %s.", dst_name);

        if (dst_name == NULL) {
                log_err("Not enough info to establish flow.");
                return NULL;
        }

        fd = flow_alloc(dst_name, qs);
        if (fd < 0) {
                log_err("Failed to allocate flow to %s.", dst_name);
                return NULL;
        }

        if (flow_alloc_res(fd)) {
                log_err("Flow allocation to %s failed.", dst_name);
                return NULL;
        }

        flow = malloc(sizeof(*flow));
        if (flow == NULL) {
                log_err("Failed to malloc.");
                flow_dealloc(fd);
                return NULL;
        }

        flow->fd = fd;
        flow->ci = NULL;

        flow->info = cacep_auth(fd, pc, info, NULL);
        if (flow->info == NULL) {
                log_err("Failed to authenticate.");
                cdap_flow_dealloc(flow);
                return NULL;
        }

        flow->ci = cdap_create(fd);
        if (flow->ci == NULL) {
                log_err("Failed to create CDAP instance.");
                cdap_flow_dealloc(flow);
                return NULL;
        }

        return flow;
}

void cdap_flow_dealloc(struct cdap_flow * flow)
{
        int fd = flow->fd;

        cdap_flow_destroy(flow);

        flow_dealloc(fd);
}