Newer
Older
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
/*
* Authors:
* Dmitriy A. Gearasimov <naeper@demlabs.net>
* DeM Labs Inc. https://demlabs.net
This file is part of DAP (Deus Applications Prototypes) the open source project
DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DAP 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 any DAP based project. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <errno.h>
#include <glib.h>
#include <time.h>
#include "dap_common.h"
#include "dap_client.h"
#include "dap_client_pvt.h"
#include "dap_config.h"
#include "dap_events.h"
#include "dap_http_client_simple.h"
#include "dap_chain_node_cli_connect.h"
#define LOG_TAG "chain_node_cli_connect"
#define DAP_APP_NAME NODE_NETNAME"-node"
#define SYSTEM_PREFIX "/opt/"DAP_APP_NAME
#define SYSTEM_CONFIGS_DIR SYSTEM_PREFIX"/etc"
static int listen_port_tcp = 8079;
int chain_node_client_init(void)
{
int res = dap_client_init();
res = dap_http_client_simple_init();
dap_config_t *g_config;
// read listen_port_tcp from settings
dap_config_init(SYSTEM_CONFIGS_DIR);
if((g_config = dap_config_open(DAP_APP_NAME)) == NULL) {
return -1;
}
else {
const char *port_str = dap_config_get_item_str(g_config, "server", "listen_port_tcp");
listen_port_tcp = (port_str) ? atoi(port_str) : 8079;
}
if(g_config)
dap_config_close(g_config);
return res;
}
void chain_node_client_deinit()
{
dap_http_client_simple_deinit();
dap_client_deinit();
}
// callback for dap_client_new() in chain_node_client_connect()
static void stage_status_callback(dap_client_t *a_client, void *a_arg)
{
//printf("* stage_status_callback client=%x data=%x\n", a_client, a_arg);
}
// callback for dap_client_new() in chain_node_client_connect()
static void stage_status_error_callback(dap_client_t *a_client, void *a_arg)
{
//printf("* tage_status_error_callback client=%x data=%x\n", a_client, a_arg);
}
// callback for the end of handshake in dap_client_go_stage() / chain_node_client_connect()
static void a_stage_end_callback(dap_client_t *a_client, void *a_arg)
{
chain_node_client_t *client = a_client->_inheritor;
assert(client);
if(client) {
pthread_mutex_lock(&client->wait_mutex);
client->state = NODE_CLIENT_STATE_CONNECT;
pthread_cond_signal(&client->wait_cond);
pthread_mutex_unlock(&client->wait_mutex);
}
}
/**
* Create connection to server
*
* return a connection handle, or NULL, if an error
*/
chain_node_client_t* chain_node_client_connect(dap_chain_node_info_t *node_info)
{
if(!node_info)
return NULL;
chain_node_client_t *client = DAP_NEW_Z(chain_node_client_t);
client->state = NODE_CLIENT_STATE_INIT;
pthread_condattr_t attr;
pthread_condattr_init(&attr);
pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
pthread_cond_init(&client->wait_cond, &attr);
pthread_mutex_init(&client->wait_mutex, NULL);
client->a_events = dap_events_new();
client->a_client = dap_client_new(client->a_events, stage_status_callback, stage_status_error_callback);
client->a_client->_inheritor = client;
dap_client_pvt_t *l_client_internal = DAP_CLIENT_PVT(client->a_client);
int hostlen = 128;
char host[hostlen];
if(node_info->hdr.ext_addr_v4.s_addr)
{
struct sockaddr_in sa4 = { .sin_family = AF_INET, .sin_addr = node_info->hdr.ext_addr_v4 };
inet_ntop(AF_INET, &(((struct sockaddr_in *) &sa4)->sin_addr), host, hostlen);
}
else
{
struct sockaddr_in6 sa6 = { .sin6_family = AF_INET6, .sin6_addr = node_info->hdr.ext_addr_v6 };
inet_ntop(AF_INET6, &(((struct sockaddr_in6 *) &sa6)->sin6_addr), host, hostlen);
}
// address not defined
if(!strcmp(host, "::")) {
chain_node_client_close(client);
return NULL;
}
l_client_internal->uplink_addr = strdup(host);
l_client_internal->uplink_port = listen_port_tcp; // reads from settings, default 8079
l_client_internal->uplink_protocol_version = DAP_PROTOCOL_VERSION;
dap_client_stage_t a_stage_target = STAGE_ENC_INIT;
client->state = NODE_CLIENT_STATE_CONNECT;
// Handshake
dap_client_go_stage(client->a_client, a_stage_target, a_stage_end_callback);
return client;
}
/**
* Close connection to server, delete chain_node_client_t *client
*/
void chain_node_client_close(chain_node_client_t *client)
{
if(client) {
// clean client
dap_client_pvt_t *l_client_internal = DAP_CLIENT_PVT(client->a_client);
DAP_DELETE(l_client_internal->uplink_addr);
dap_client_delete(client->a_client);
dap_events_delete(client->a_events);
pthread_cond_destroy(&client->wait_cond);
pthread_mutex_destroy(&client->wait_mutex);
DAP_DELETE(client);
}
}
/**
* wait for the complete of request
*
* timeout_ms timeout in milliseconds
* waited_state state which we will wait, sample NODE_CLIENT_STATE_CONNECT or NODE_CLIENT_STATE_SENDED
* return -1 false, 0 timeout, 1 end of connection or sending data
*/
int chain_node_client_wait(chain_node_client_t *client, int waited_state, int timeout_ms)
{
int ret = -1;
if(!client)
return -1;
pthread_mutex_lock(&client->wait_mutex);
// have waited
if(client->state == waited_state) {
pthread_mutex_unlock(&client->wait_mutex);
return 1;
}
// prepare for signal waiting
struct timespec to;
clock_gettime(CLOCK_MONOTONIC, &to);
int64_t nsec_new = to.tv_nsec + timeout_ms * 1000000ll;
// if the new number of nanoseconds is more than a second
if(nsec_new > (long) 1e9) {
to.tv_sec += nsec_new / (long) 1e9;
to.tv_nsec = nsec_new % (long) 1e9;
}
else
to.tv_nsec = (long) nsec_new;
// signal waiting
int wait = pthread_cond_timedwait(&client->wait_cond, &client->wait_mutex, &to);
if(wait == 0) //0
ret = 1;
else if(wait == ETIMEDOUT) // 110 260
ret = 0;
pthread_mutex_unlock(&client->wait_mutex);
return ret;
}