summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/cdap_flow.c
blob: c694e6376ca6c9e0f5b6a054eda650c7c665cb07 (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
/*
 * 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 <string.h>
#include <assert.h>

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

        if (flow->ci != NULL)
                cdap_destroy(flow->ci);

        free(flow);
}

struct cdap_flow * cdap_flow_arr(int                      fd,
                                 int                      resp,
                                 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;
        }

        memset(&flow->info, 0, sizeof(flow->info));

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

        if (cacep_rcv(fd, &flow->info)) {
                log_err("Error establishing application connection.");
                cdap_flow_destroy(flow);
                return NULL;
        }

        if (cacep_snd(fd, info)) {
                log_err("Failed to respond to application connection request.");
                cdap_flow_destroy(flow);
                return NULL;
        }

        if (strcmp(flow->info.ae_name, info->ae_name)) {
                log_err("Received connection for wrong AE.");
                cdap_flow_destroy(flow);
                return NULL;
        }

        if (strcmp(flow->info.protocol, info->protocol) ||
            flow->info.pref_version != info->pref_version ||
            flow->info.pref_syntax != info->pref_syntax) {
                log_err("Unknown protocol.");
                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,
                                   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;
        }

        memset(&flow->info, 0, sizeof(flow->info));

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

        if (cacep_snd(fd, info)) {
                log_err("Failed to send connection request.");
                cdap_flow_dealloc(flow);
                return NULL;
        }

        if (cacep_rcv(fd, &flow->info)) {
                log_err("Failed to connect to application.");
                cdap_flow_dealloc(flow);
                return NULL;
        }

        if (strcmp(flow->info.ae_name, info->ae_name)) {
                log_err("Received connection for wrong AE.");
                cdap_flow_destroy(flow);
                return NULL;
        }

        if (strcmp(flow->info.protocol, info->protocol) ||
            flow->info.pref_version != info->pref_version ||
            flow->info.pref_syntax != info->pref_syntax) {
                log_err("Unknown protocol.");
                cdap_flow_destroy(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);
}