This repository has been archived by the owner on Feb 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtclt.c
383 lines (327 loc) · 7.69 KB
/
tclt.c
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
/*
* Copyright (c) 2012 Tristan Le Guern <leguern AT medu DOT se>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <yajl/yajl_tree.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "tclt.h"
#include "tclt_format.h"
#include "tclt_command.h"
static void free_node(yajl_val node);
call_command commands[] =
{
{ADD_PEER_CMD, NULL},
{DELETE_PEER_CMD, NULL},
{EDIT_PEER_CMD, NULL},
{ADD_LOG_CMD, NULL}
};
void
tclt_init(void) {
/* Do nothing for the moment */
}
void
tclt_destroy(void) {
/* Do nothing for the moment */
}
float
tclt_get_version(void) {
return LIB_TNETACLE_CLIENT_VERSION;
}
int
tclt_set_callback_command(const char *cmd, int (*f)(void*, void*))
{
unsigned int i;
for (i=0; i < sizeof(commands)/sizeof(*commands); ++i)
{
if (strcmp(commands[i].cmd_name, cmd) == 0)
{
commands[i].f = f;
return 0;
}
}
return 1;
}
void*
tclt_get_callback_command(const char *cmd)
{
unsigned int i;
for (i=0; i < sizeof(commands)/sizeof(*commands); ++i)
{
if (strcmp(commands[i].cmd_name, cmd) == 0)
{
return (commands[i].f);
}
}
return NULL;
}
static void
free_array(yajl_val node)
{
unsigned int i;
for (i=0; i < node->u.array.len; ++i)
{
free_node(node->u.array.values[i]);
}
free(node->u.array.values);
free(node);
}
static void
free_object(yajl_val node)
{
unsigned int i;
for (i=0; i < node->u.object.len; ++i)
{
free_node(node->u.object.values[i]);
}
free(node->u.object.values);
free(node->u.object.keys);
free(node);
}
static void
free_string(yajl_val node)
{
free(node->u.string);
free(node);
}
static void
free_node(yajl_val node)
{
if (YAJL_IS_ARRAY(node))
free_array(node);
else if (YAJL_IS_OBJECT(node))
free_object(node);
else if (YAJL_IS_STRING(node))
free_string(node);
else
free(node);
}
static yajl_val
tclt_make_string_node(const char* val)
{
yajl_val node = NULL;
node = malloc(sizeof(*node));
if (node == NULL)
{
fprintf(stderr, "tclt_make_string_node: out of memory\n");
return NULL;
}
node->type = yajl_t_string;
if (val != NULL)
node->u.string = strdup(val);
else
node->u.string = strdup("");
if (node->u.string == NULL)
{
fprintf(stderr, "tclt_make_string_node: out of memory\n");
return NULL;
}
return node;
}
static yajl_val
tclt_make_object_node(unsigned int len)
{
yajl_val node = NULL;
node = malloc(sizeof(*node));
if (node == NULL)
{
fprintf(stderr, "tclt_make_object_node: out of memory\n");
return NULL;
}
node->type = yajl_t_object;
node->u.object.len = len;
node->u.object.keys = malloc(sizeof(*node->u.object.keys) * len);
if (node->u.object.keys == NULL)
{
free(node);
fprintf(stderr, "tclt_make_object_node: out of memory\n");
return NULL;
}
node->u.object.values = malloc(sizeof(*node->u.object.values) * len);
if (node->u.object.values == NULL)
{
free(node);
free(node->u.object.keys);
fprintf(stderr, "tclt_make_object_node: out of memory\n");
return NULL;
}
return (node);
}
static yajl_val
tclt_make_array_node(unsigned int len)
{
yajl_val node = NULL;
node = malloc(sizeof(*node));
if (node == NULL)
{
fprintf(stderr, "tclt_make_array_node: out of memory\n");
return NULL;
}
node->type = yajl_t_array;
node->u.array.len = len;
node->u.array.values = malloc(sizeof(*node->u.array.values) * len);
if (node->u.array.values == NULL)
{
free(node);
fprintf(stderr, "tclt_make_array_node: out of memory\n");
return NULL;
}
return (node);
}
static yajl_val
tclt_make_node_peer(peer *peer)
{
yajl_val node = NULL;
yajl_val ip;
yajl_val name;
yajl_val key;
if ((node = tclt_make_object_node(3)) == NULL)
return NULL;
name = tclt_make_string_node(peer->name);
ip = tclt_make_string_node(peer->ip);
key = tclt_make_string_node(peer->key);
if (name == NULL || ip == NULL || key == NULL)
{
free(node);
free(node->u.object.keys);
free(node->u.object.values);
return NULL;
}
/* TODO : verify the strdup */
node->u.object.keys[0] = "Name";
node->u.object.values[0] = name;
node->u.object.keys[1] = "Key";
node->u.object.values[1] = key;
node->u.object.keys[2] = "Ip";
node->u.object.values[2] = ip;
return node;
}
char*
tclt_add_peer(peer *peer)
{
yajl_val node = NULL;
char *format = NULL;
if (peer == NULL)
return NULL;
if ((node = tclt_make_object_node(1)) == NULL)
return NULL;
node->u.object.keys[0] = ADD_PEER_CMD;
node->u.object.values[0] = tclt_make_node_peer(peer);
if (node->u.object.values[0] == NULL)
return NULL;
format = tclt_format(node);
free_node(node);
return format;
}
char*
tclt_add_list_of_peers(peer *peers, unsigned int nb)
{
yajl_val node = NULL;
yajl_val tmp_node = NULL;
unsigned int i;
char *format = NULL;
if (nb == 0)
return NULL;
if ((node = tclt_make_array_node(nb)) == NULL)
return NULL;
for (i=0; i < nb; ++i)
{
if ((tmp_node = tclt_make_object_node(1)) == NULL)
return NULL;
tmp_node->u.object.keys[0] = ADD_PEER_CMD;
tmp_node->u.object.values[0] = tclt_make_node_peer(&peers[i]);
node->u.array.values[i] = tmp_node;
}
format = tclt_format(node);
free_node(node);
return format;
}
char *tclt_add_connection()
{
return NULL;
}
void tclt_add_tunnel()
{
}
void tclt_delete_connection()
{
}
void tclt_stop_tunnel()
{
}
char*
tclt_delete_peer(const char *peer)
{
char *res = NULL;
yajl_val node;
if (peer == NULL)
return NULL;
if ((node = tclt_make_object_node(1)) == NULL)
return NULL;
node->u.object.keys[0] = DELETE_PEER_CMD;
node->u.object.values[0] = tclt_make_string_node(peer);
res = tclt_format(node);
free_node(node);
return res;
}
void tclt_clear_peers()
{
}
void tclt_edit_peer()
{
}
void tclt_create_group()
{
}
void tclt_destroy_group()
{
}
void tclt_add_peer_to_group()
{
}
void tclt_clear_group()
{
}
void tclt_edit_config()
{
}
void tclt_add_public_key()
{
}
void tclt_add_key_for_peer()
{
}
void tclt_add_key_for_client()
{
}
char*
tclt_add_log(const char *log)
{
yajl_val node = NULL;
yajl_val tmp_node = NULL;
char *format = NULL;
if (log == NULL)
return NULL;
if ((node = tclt_make_object_node(1)) == NULL)
return NULL;
if ((tmp_node = tclt_make_string_node(log)) == NULL)
return NULL;
node->u.object.keys[0] = ADD_LOG_CMD;
node->u.object.values[0] = tmp_node;
format = tclt_format(node);
free_node(node);
return format;
}