67fd32e4967c9f20e0f3a6acddbdef64f9de0c98
[oweals/gnunet.git] / src / credential / plugin_gnsrecord_credential.c
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2013 GNUnet e.V.
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file credential/plugin_gnsrecord_credential.c
23  * @brief gnsrecord plugin to provide the API for CREDENTIAL records
24  * @author Adnan Husain
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_gnsrecord_lib.h"
30 #include "gnunet_credential_service.h"
31 #include "gnunet_gnsrecord_plugin.h"
32
33
34 /**
35  * Convert the 'value' of a record to a string.
36  *
37  * @param cls closure, unused
38  * @param type type of the record
39  * @param data value in binary encoding
40  * @param data_size number of bytes in @a data
41  * @return NULL on error, otherwise human-readable representation of the value
42  */
43 static char *
44 credential_value_to_string (void *cls,
45                               uint32_t type,
46                               const void *data,
47                               size_t data_size)
48 {
49
50   const char *cdata;
51
52   switch (type)
53   {
54    case GNUNET_GNSRECORD_TYPE_ATTRIBUTE:
55    {
56     struct GNUNET_CREDENTIAL_AttributeRecordData attr;
57     char *attr_str;
58     char *subject_pkey;
59     
60     if (data_size < sizeof (struct GNUNET_CREDENTIAL_AttributeRecordData))
61       return NULL; /* malformed */
62     memcpy (&attr,
63             data,
64             sizeof (attr));
65     cdata = data;
66     subject_pkey = GNUNET_CRYPTO_ecdsa_public_key_to_string (&attr.subject_key);
67     GNUNET_asprintf (&attr_str,
68                      "%s.%s",
69                      subject_pkey,
70                      &cdata[sizeof (attr)]);
71     GNUNET_free (subject_pkey);
72     return attr_str;
73    }
74    case GNUNET_GNSRECORD_TYPE_CREDENTIAL:
75    {
76      struct GNUNET_CREDENTIAL_CredentialRecordData cred;
77      char *cred_str;
78      char *subject_pkey;
79      char *issuer_pkey;
80      if (data_size < sizeof (struct GNUNET_CREDENTIAL_CredentialRecordData))
81        return NULL; /* malformed */
82      memcpy (&cred,
83              data,
84              sizeof (cred));
85      cdata = data;  
86      subject_pkey = GNUNET_CRYPTO_ecdsa_public_key_to_string (&cred.subject_key);
87      issuer_pkey = GNUNET_CRYPTO_ecdsa_public_key_to_string (&cred.issuer_key);
88
89      GNUNET_asprintf (&cred_str,
90                       "%s %s %s",
91                       subject_pkey,
92                       issuer_pkey,
93                       &cdata[sizeof (cred)]);
94      GNUNET_free (subject_pkey);
95      GNUNET_free (issuer_pkey);
96
97      return cred_str;
98    }
99    default:
100    return NULL;
101   }
102 }
103
104
105 /**
106  * Convert human-readable version of a 'value' of a record to the binary
107  * representation.
108  *
109  * @param cls closure, unused
110  * @param type type of the record
111  * @param s human-readable string
112  * @param data set to value in binary encoding (will be allocated)
113  * @param data_size set to number of bytes in @a data
114  * @return #GNUNET_OK on success
115  */
116 static int
117 credential_string_to_value (void *cls,
118                             uint32_t type,
119                             const char *s,
120                             void **data,
121                             size_t *data_size)
122 {
123   if (NULL == s)
124     return GNUNET_SYSERR;
125   switch (type)
126   {
127     case GNUNET_GNSRECORD_TYPE_CREDENTIAL:
128       { 
129         struct GNUNET_CREDENTIAL_CredentialRecordData *cred;
130
131         size_t enclen = (sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey)) * 8;
132         if (enclen % 5 > 0)
133           enclen += 5 - enclen % 5;
134         enclen /= 5; /* 260/5 = 52 */
135         char subject_pkey[enclen + 1];
136         char issuer_pkey[enclen + 1];
137         char name[253 + 1];
138
139         if (5 != SSCANF (s,
140                          "%52s %52s %253s",
141                          subject_pkey,
142                          issuer_pkey,
143                          name))
144         {
145           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
146                       _("Unable to parse CRED record string `%s'\n"),
147                       s);
148           return GNUNET_SYSERR;
149         }
150         *data_size = sizeof (struct GNUNET_CREDENTIAL_CredentialRecordData) + strlen (name) + 1;
151         *data = cred = GNUNET_malloc (*data_size);
152         GNUNET_CRYPTO_ecdsa_public_key_from_string (subject_pkey,
153                                                     strlen (subject_pkey),
154                                                     &cred->subject_key);
155         GNUNET_CRYPTO_ecdsa_public_key_from_string (issuer_pkey,
156                                                     strlen (issuer_pkey),
157                                                     &cred->issuer_key);
158         GNUNET_memcpy (&cred[1],
159                        name,
160                        strlen (name));
161
162
163         *data = GNUNET_strdup (s);
164         *data_size = strlen (s);
165         return GNUNET_OK;
166       }
167     default:
168       return GNUNET_SYSERR;
169   }
170 }
171
172
173 /**
174  * Mapping of record type numbers to human-readable
175  * record type names.
176  */
177 static struct {
178   const char *name;
179   uint32_t number;
180 } name_map[] = {
181   { "CRED", GNUNET_GNSRECORD_TYPE_CREDENTIAL },
182   { NULL, UINT32_MAX }
183 };
184
185
186 /**
187  * Convert a type name (i.e. "AAAA") to the corresponding number.
188  *
189  * @param cls closure, unused
190  * @param gns_typename name to convert
191  * @return corresponding number, UINT32_MAX on error
192  */
193 static uint32_t
194 credential_typename_to_number (void *cls,
195                                const char *gns_typename)
196 {
197   unsigned int i;
198
199   i=0;
200   while ( (name_map[i].name != NULL) &&
201           (0 != strcasecmp (gns_typename, name_map[i].name)) )
202     i++;
203   return name_map[i].number;
204 }
205
206
207 /**
208  * Convert a type number (i.e. 1) to the corresponding type string (i.e. "A")
209  *
210  * @param cls closure, unused
211  * @param type number of a type to convert
212  * @return corresponding typestring, NULL on error
213  */
214 static const char *
215 credential_number_to_typename (void *cls,
216                                uint32_t type)
217 {
218   unsigned int i;
219
220   i=0;
221   while ( (name_map[i].name != NULL) &&
222           (type != name_map[i].number) )
223     i++;
224   return name_map[i].name;
225 }
226
227
228 /**
229  * Entry point for the plugin.
230  *
231  * @param cls NULL
232  * @return the exported block API
233  */
234 void *
235 libgnunet_plugin_gnsrecord_credential_init (void *cls)
236 {
237   struct GNUNET_GNSRECORD_PluginFunctions *api;
238
239   api = GNUNET_new (struct GNUNET_GNSRECORD_PluginFunctions);
240   api->value_to_string = &credential_value_to_string;
241   api->string_to_value = &credential_string_to_value;
242   api->typename_to_number = &credential_typename_to_number;
243   api->number_to_typename = &credential_number_to_typename;
244   return api;
245 }
246
247
248 /**
249  * Exit point from the plugin.
250  *
251  * @param cls the return value from #libgnunet_plugin_block_test_init
252  * @return NULL
253  */
254 void *
255 libgnunet_plugin_gnsrecord_credential_done (void *cls)
256 {
257   struct GNUNET_GNSRECORD_PluginFunctions *api = cls;
258
259   GNUNET_free (api);
260   return NULL;
261 }
262
263 /* end of plugin_gnsrecord_credential.c */