Merge branch 'credentials' of git+ssh://gnunet.org/gnunet into credentials
[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     uint32_t cf; // Credential flags
81     if (data_size < sizeof (struct GNUNET_CREDENTIAL_CredentialRecordData))
82         return NULL; /* malformed */
83     memcpy (&cred,
84               data,
85               sizeof (cred));
86     cdata = data;  
87     subject_pkey = GNUNET_CRYPTO_ecdsa_public_key_to_string (&cred.subject_key);
88     issuer_pkey = GNUNET_CRYPTO_ecdsa_public_key_to_string (&cred.issuer_key);
89     cf = ntohl (cred.credential_flags);
90
91      GNUNET_asprintf (&cred_str,
92                      "%s %s %u %s",
93                      subject_pkey,
94                      issuer_pkey,
95                      (unsigned int) cf,
96                      &cdata[sizeof (cred)]);
97       GNUNET_free (subject_pkey);
98       GNUNET_free (issuer_pkey);
99
100
101
102     return cred_str;
103     }
104   default:
105     return NULL;
106   }
107 }
108
109
110 /**
111  * Convert human-readable version of a 'value' of a record to the binary
112  * representation.
113  *
114  * @param cls closure, unused
115  * @param type type of the record
116  * @param s human-readable string
117  * @param data set to value in binary encoding (will be allocated)
118  * @param data_size set to number of bytes in @a data
119  * @return #GNUNET_OK on success
120  */
121 static int
122 credential_string_to_value (void *cls,
123                      uint32_t type,
124                      const char *s,
125                      void **data,
126                      size_t *data_size)
127 {
128   if (NULL == s)
129     return GNUNET_SYSERR;
130   switch (type)
131   {
132     case GNUNET_GNSRECORD_TYPE_CREDENTIAL:
133       { 
134         struct GNUNET_CREDENTIAL_CredentialRecordData *cred;
135         unsigned int cf; // credential flags
136
137         size_t enclen = (sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey)) * 8;
138         if (enclen % 5 > 0)
139           enclen += 5 - enclen % 5;
140         enclen /= 5; /* 260/5 = 52 */
141         char subject_pkey[enclen + 1];
142         char issuer_pkey[enclen + 1];
143         char name[253 + 1];
144
145         if (5 != SSCANF (s,
146                          "%52s %52s %u %253s",
147                          subject_pkey,
148                          issuer_pkey,
149                          &cf,
150                          name))
151         {
152           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
153                       _("Unable to parse CRED record string `%s'\n"),
154                       s);
155           return GNUNET_SYSERR;
156         }
157         *data_size = sizeof (struct GNUNET_CREDENTIAL_CredentialRecordData) + strlen (name) + 1;
158         *data = cred = GNUNET_malloc (*data_size);
159         GNUNET_CRYPTO_ecdsa_public_key_from_string (subject_pkey,
160                                                     strlen (subject_pkey),
161                                                     &cred->subject_key);
162         GNUNET_CRYPTO_ecdsa_public_key_from_string (issuer_pkey,
163                                                     strlen (issuer_pkey),
164                                                     &cred->issuer_key);
165         cred->credential_flags = htonl (cf);
166         GNUNET_memcpy (&cred[1],
167                        name,
168                        strlen (name));
169
170
171         *data = GNUNET_strdup (s);
172         *data_size = strlen (s);
173         return GNUNET_OK;
174       }
175     default:
176       return GNUNET_SYSERR;
177   }
178 }
179
180
181 /**
182  * Mapping of record type numbers to human-readable
183  * record type names.
184  */
185 static struct {
186   const char *name;
187   uint32_t number;
188 } name_map[] = {
189   { "CRED", GNUNET_GNSRECORD_TYPE_CREDENTIAL },
190   { NULL, UINT32_MAX }
191 };
192
193
194 /**
195  * Convert a type name (i.e. "AAAA") to the corresponding number.
196  *
197  * @param cls closure, unused
198  * @param gns_typename name to convert
199  * @return corresponding number, UINT32_MAX on error
200  */
201 static uint32_t
202 credential_typename_to_number (void *cls,
203                                const char *gns_typename)
204 {
205   unsigned int i;
206
207   i=0;
208   while ( (name_map[i].name != NULL) &&
209           (0 != strcasecmp (gns_typename, name_map[i].name)) )
210     i++;
211   return name_map[i].number;
212 }
213
214
215 /**
216  * Convert a type number (i.e. 1) to the corresponding type string (i.e. "A")
217  *
218  * @param cls closure, unused
219  * @param type number of a type to convert
220  * @return corresponding typestring, NULL on error
221  */
222 static const char *
223 credential_number_to_typename (void *cls,
224                                uint32_t type)
225 {
226   unsigned int i;
227
228   i=0;
229   while ( (name_map[i].name != NULL) &&
230           (type != name_map[i].number) )
231     i++;
232   return name_map[i].name;
233 }
234
235
236 /**
237  * Entry point for the plugin.
238  *
239  * @param cls NULL
240  * @return the exported block API
241  */
242 void *
243 libgnunet_plugin_gnsrecord_credential_init (void *cls)
244 {
245   struct GNUNET_GNSRECORD_PluginFunctions *api;
246
247   api = GNUNET_new (struct GNUNET_GNSRECORD_PluginFunctions);
248   api->value_to_string = &credential_value_to_string;
249   api->string_to_value = &credential_string_to_value;
250   api->typename_to_number = &credential_typename_to_number;
251   api->number_to_typename = &credential_number_to_typename;
252   return api;
253 }
254
255
256 /**
257  * Exit point from the plugin.
258  *
259  * @param cls the return value from #libgnunet_plugin_block_test_init
260  * @return NULL
261  */
262 void *
263 libgnunet_plugin_gnsrecord_credential_done (void *cls)
264 {
265   struct GNUNET_GNSRECORD_PluginFunctions *api = cls;
266
267   GNUNET_free (api);
268   return NULL;
269 }
270
271 /* end of plugin_gnsrecord_credential.c */