uncrustify as demanded.
[oweals/gnunet.git] / src / gns / plugin_gnsrecord_gns.c
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2013, 2014, 2016 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      Affero General Public License for more details.
14
15      You should have received a copy of the GNU Affero General Public License
16      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18      SPDX-License-Identifier: AGPL3.0-or-later
19  */
20
21 /**
22  * @file gns/plugin_gnsrecord_gns.c
23  * @brief gnsrecord plugin to provide the API for fundamental GNS records
24  *                  This includes the VPN record because GNS resolution
25  *                  is expected to understand VPN records and (if needed)
26  *                  map the result to A/AAAA.
27  * @author Christian Grothoff
28  */
29 #include "platform.h"
30 #include "gnunet_util_lib.h"
31 #include "gnunet_gnsrecord_lib.h"
32 #include "gnunet_dnsparser_lib.h"
33 #include "gnunet_gnsrecord_plugin.h"
34 #include <inttypes.h>
35
36
37 /**
38  * Convert the 'value' of a record to a string.
39  *
40  * @param cls closure, unused
41  * @param type type of the record
42  * @param data value in binary encoding
43  * @param data_size number of bytes in @a data
44  * @return NULL on error, otherwise human-readable representation of the value
45  */
46 static char *
47 gns_value_to_string(void *cls,
48                     uint32_t type,
49                     const void *data,
50                     size_t data_size)
51 {
52   const char *cdata;
53
54   switch (type)
55     {
56     case GNUNET_GNSRECORD_TYPE_PKEY:
57       if (data_size != sizeof(struct GNUNET_CRYPTO_EcdsaPublicKey))
58         return NULL;
59       return GNUNET_CRYPTO_ecdsa_public_key_to_string(data);
60
61     case GNUNET_GNSRECORD_TYPE_NICK:
62       return GNUNET_strndup(data, data_size);
63
64     case GNUNET_GNSRECORD_TYPE_LEHO:
65       return GNUNET_strndup(data, data_size);
66
67     case GNUNET_GNSRECORD_TYPE_GNS2DNS: {
68       char *ns;
69       char *ip;
70       size_t off;
71       char *nstr;
72
73       off = 0;
74       ns = GNUNET_DNSPARSER_parse_name(data, data_size, &off);
75       ip = GNUNET_DNSPARSER_parse_name(data, data_size, &off);
76       if ((NULL == ns) || (NULL == ip) || (off != data_size))
77         {
78           GNUNET_break_op(0);
79           GNUNET_free_non_null(ns);
80           GNUNET_free_non_null(ip);
81           return NULL;
82         }
83       GNUNET_asprintf(&nstr, "%s@%s", ns, ip);
84       GNUNET_free_non_null(ns);
85       GNUNET_free_non_null(ip);
86       return nstr;
87     }
88
89     case GNUNET_GNSRECORD_TYPE_VPN: {
90       struct GNUNET_TUN_GnsVpnRecord vpn;
91       char *vpn_str;
92
93       cdata = data;
94       if ((data_size <= sizeof(vpn)) || ('\0' != cdata[data_size - 1]))
95         return NULL; /* malformed */
96       /* need to memcpy for alignment */
97       GNUNET_memcpy(&vpn, data, sizeof(vpn));
98       GNUNET_asprintf(&vpn_str,
99                       "%u %s %s",
100                       (unsigned int)ntohs(vpn.proto),
101                       (const char *)GNUNET_i2s_full(&vpn.peer),
102                       (const char *)&cdata[sizeof(vpn)]);
103       return vpn_str;
104     }
105
106     case GNUNET_GNSRECORD_TYPE_BOX: {
107       struct GNUNET_GNSRECORD_BoxRecord box;
108       uint32_t rt;
109       char *box_str;
110       char *ival;
111
112       cdata = data;
113       if (data_size < sizeof(struct GNUNET_GNSRECORD_BoxRecord))
114         return NULL; /* malformed */
115       GNUNET_memcpy(&box, data, sizeof(box));
116       rt = ntohl(box.record_type);
117       ival = GNUNET_GNSRECORD_value_to_string(rt,
118                                               &cdata[sizeof(box)],
119                                               data_size - sizeof(box));
120       if (NULL == ival)
121         return NULL; /* malformed */
122       GNUNET_asprintf(&box_str,
123                       "%u %u %u %s",
124                       (unsigned int)ntohs(box.protocol),
125                       (unsigned int)ntohs(box.service),
126                       (unsigned int)rt,
127                       ival);
128       GNUNET_free(ival);
129       return box_str;
130     }
131
132     default:
133       return NULL;
134     }
135 }
136
137
138 /**
139  * Convert human-readable version of a 'value' of a record to the binary
140  * representation.
141  *
142  * @param cls closure, unused
143  * @param type type of the record
144  * @param s human-readable string
145  * @param data set to value in binary encoding (will be allocated)
146  * @param data_size set to number of bytes in @a data
147  * @return #GNUNET_OK on success
148  */
149 static int
150 gns_string_to_value(void *cls,
151                     uint32_t type,
152                     const char *s,
153                     void **data,
154                     size_t *data_size)
155 {
156   struct GNUNET_CRYPTO_EcdsaPublicKey pkey;
157
158   if (NULL == s)
159     return GNUNET_SYSERR;
160   switch (type)
161     {
162     case GNUNET_GNSRECORD_TYPE_PKEY:
163       if (GNUNET_OK !=
164           GNUNET_CRYPTO_ecdsa_public_key_from_string(s, strlen(s), &pkey))
165         {
166           GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
167                      _("Unable to parse PKEY record `%s'\n"),
168                      s);
169           return GNUNET_SYSERR;
170         }
171       *data = GNUNET_new(struct GNUNET_CRYPTO_EcdsaPublicKey);
172       GNUNET_memcpy(*data, &pkey, sizeof(pkey));
173       *data_size = sizeof(struct GNUNET_CRYPTO_EcdsaPublicKey);
174       return GNUNET_OK;
175
176     case GNUNET_GNSRECORD_TYPE_NICK:
177       *data = GNUNET_strdup(s);
178       *data_size = strlen(s);
179       return GNUNET_OK;
180
181     case GNUNET_GNSRECORD_TYPE_LEHO:
182       *data = GNUNET_strdup(s);
183       *data_size = strlen(s);
184       return GNUNET_OK;
185
186     case GNUNET_GNSRECORD_TYPE_GNS2DNS: {
187       char nsbuf[514];
188       char *cpy;
189       char *at;
190       size_t off;
191
192       cpy = GNUNET_strdup(s);
193       at = strchr(cpy, '@');
194       if (NULL == at)
195         {
196           GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
197                      _("Unable to parse GNS2DNS record `%s'\n"),
198                      s);
199           GNUNET_free(cpy);
200           return GNUNET_SYSERR;
201         }
202       *at = '\0';
203       at++;
204
205       off = 0;
206       if ((GNUNET_OK != GNUNET_DNSPARSER_builder_add_name(nsbuf,
207                                                           sizeof(nsbuf),
208                                                           &off,
209                                                           cpy)) ||
210           (GNUNET_OK !=
211            GNUNET_DNSPARSER_builder_add_name(nsbuf, sizeof(nsbuf), &off, at)))
212         {
213           GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
214                      _("Failed to serialize GNS2DNS record with value `%s'\n"),
215                      s);
216           GNUNET_free(cpy);
217           return GNUNET_SYSERR;
218         }
219       GNUNET_free(cpy);
220       *data_size = off;
221       *data = GNUNET_malloc(off);
222       GNUNET_memcpy(*data, nsbuf, off);
223       return GNUNET_OK;
224     }
225
226     case GNUNET_GNSRECORD_TYPE_VPN: {
227       struct GNUNET_TUN_GnsVpnRecord *vpn;
228       char s_peer[103 + 1];
229       char s_serv[253 + 1];
230       unsigned int proto;
231
232       if (3 != sscanf(s, "%u %103s %253s", &proto, s_peer, s_serv))
233         {
234           GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
235                      _("Unable to parse VPN record string `%s'\n"),
236                      s);
237           return GNUNET_SYSERR;
238         }
239       *data_size = sizeof(struct GNUNET_TUN_GnsVpnRecord) + strlen(s_serv) + 1;
240       *data = vpn = GNUNET_malloc(*data_size);
241       if (GNUNET_OK !=
242           GNUNET_CRYPTO_eddsa_public_key_from_string((char *)s_peer,
243                                                      strlen(s_peer),
244                                                      &vpn->peer.public_key))
245         {
246           GNUNET_free(vpn);
247           *data_size = 0;
248           return GNUNET_SYSERR;
249         }
250       vpn->proto = htons((uint16_t)proto);
251       strcpy((char *)&vpn[1], s_serv);
252       return GNUNET_OK;
253     }
254
255     case GNUNET_GNSRECORD_TYPE_BOX: {
256       struct GNUNET_GNSRECORD_BoxRecord *box;
257       size_t rest;
258       unsigned int protocol;
259       unsigned int service;
260       unsigned int record_type;
261       void *bval;
262       size_t bval_size;
263
264       if (3 != sscanf(s, "%u %u %u ", &protocol, &service, &record_type))
265         {
266           GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
267                      _("Unable to parse BOX record string `%s'\n"),
268                      s);
269           return GNUNET_SYSERR;
270         }
271       rest = snprintf(NULL, 0, "%u %u %u ", protocol, service, record_type);
272       if (GNUNET_OK != GNUNET_GNSRECORD_string_to_value(record_type,
273                                                         &s[rest],
274                                                         &bval,
275                                                         &bval_size))
276         return GNUNET_SYSERR;
277       *data_size = sizeof(struct GNUNET_GNSRECORD_BoxRecord) + bval_size;
278       *data = box = GNUNET_malloc(*data_size);
279       box->protocol = htons(protocol);
280       box->service = htons(service);
281       box->record_type = htonl(record_type);
282       GNUNET_memcpy(&box[1], bval, bval_size);
283       GNUNET_free(bval);
284       return GNUNET_OK;
285     }
286
287     default:
288       return GNUNET_SYSERR;
289     }
290 }
291
292
293 /**
294  * Mapping of record type numbers to human-readable
295  * record type names.
296  */
297 static struct {
298   const char *name;
299   uint32_t number;
300 } gns_name_map[] = { { "PKEY", GNUNET_GNSRECORD_TYPE_PKEY },
301                      { "NICK", GNUNET_GNSRECORD_TYPE_NICK },
302                      { "LEHO", GNUNET_GNSRECORD_TYPE_LEHO },
303                      { "VPN", GNUNET_GNSRECORD_TYPE_VPN },
304                      { "GNS2DNS", GNUNET_GNSRECORD_TYPE_GNS2DNS },
305                      { "BOX", GNUNET_GNSRECORD_TYPE_BOX },
306                      { NULL, UINT32_MAX } };
307
308
309 /**
310  * Convert a type name (i.e. "AAAA") to the corresponding number.
311  *
312  * @param cls closure, unused
313  * @param gns_typename name to convert
314  * @return corresponding number, UINT32_MAX on error
315  */
316 static uint32_t
317 gns_typename_to_number(void *cls, const char *gns_typename)
318 {
319   unsigned int i;
320
321   i = 0;
322   while ((NULL != gns_name_map[i].name) &&
323          (0 != strcasecmp(gns_typename, gns_name_map[i].name)))
324     i++;
325   return gns_name_map[i].number;
326 }
327
328
329 /**
330  * Convert a type number (i.e. 1) to the corresponding type string (i.e. "A")
331  *
332  * @param cls closure, unused
333  * @param type number of a type to convert
334  * @return corresponding typestring, NULL on error
335  */
336 static const char *
337 gns_number_to_typename(void *cls, uint32_t type)
338 {
339   unsigned int i;
340
341   i = 0;
342   while ((NULL != gns_name_map[i].name) && (type != gns_name_map[i].number))
343     i++;
344   return gns_name_map[i].name;
345 }
346
347
348 /**
349  * Entry point for the plugin.
350  *
351  * @param cls NULL
352  * @return the exported block API
353  */
354 void *
355 libgnunet_plugin_gnsrecord_gns_init(void *cls)
356 {
357   struct GNUNET_GNSRECORD_PluginFunctions *api;
358
359   api = GNUNET_new(struct GNUNET_GNSRECORD_PluginFunctions);
360   api->value_to_string = &gns_value_to_string;
361   api->string_to_value = &gns_string_to_value;
362   api->typename_to_number = &gns_typename_to_number;
363   api->number_to_typename = &gns_number_to_typename;
364   return api;
365 }
366
367
368 /**
369  * Exit point from the plugin.
370  *
371  * @param cls the return value from #libgnunet_plugin_block_test_init()
372  * @return NULL
373  */
374 void *
375 libgnunet_plugin_gnsrecord_gns_done(void *cls)
376 {
377   struct GNUNET_GNSRECORD_PluginFunctions *api = cls;
378
379   GNUNET_free(api);
380   return NULL;
381 }
382
383 /* end of plugin_gnsrecord_gns.c */