aboutsummaryrefslogtreecommitdiff
path: root/src/abd/delegate_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/abd/delegate_misc.c')
-rw-r--r--src/abd/delegate_misc.c270
1 files changed, 0 insertions, 270 deletions
diff --git a/src/abd/delegate_misc.c b/src/abd/delegate_misc.c
deleted file mode 100644
index 4740a3e30..000000000
--- a/src/abd/delegate_misc.c
+++ /dev/null
@@ -1,270 +0,0 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2009-2013, 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/**
23 * @file abd/delegate_misc.c
24 * @brief Misc API for delegate
25 *
26 * @author Martin Schanzenbach
27 */
28#include "platform.h"
29#include "gnunet_util_lib.h"
30#include "gnunet_constants.h"
31#include "gnunet_abd_service.h"
32#include "gnunet_signatures.h"
33#include "abd.h"
34#include <inttypes.h>
35
36char *
37GNUNET_ABD_delegate_to_string (
38 const struct GNUNET_ABD_Delegate *cred)
39{
40 char *cred_str;
41 char *subject_pkey;
42 char *issuer_pkey;
43 char *signature;
44
45 subject_pkey = GNUNET_CRYPTO_ecdsa_public_key_to_string (&cred->subject_key);
46 issuer_pkey = GNUNET_CRYPTO_ecdsa_public_key_to_string (&cred->issuer_key);
47 GNUNET_STRINGS_base64_encode ((char *) &cred->signature,
48 sizeof (struct GNUNET_CRYPTO_EcdsaSignature),
49 &signature);
50 if (0 == cred->subject_attribute_len)
51 {
52 GNUNET_asprintf (&cred_str,
53 "%s.%s -> %s | %s | %" SCNu64,
54 issuer_pkey,
55 cred->issuer_attribute,
56 subject_pkey,
57 signature,
58 cred->expiration.abs_value_us);
59 }
60 else
61 {
62 GNUNET_asprintf (&cred_str,
63 "%s.%s -> %s.%s | %s | %" SCNu64,
64 issuer_pkey,
65 cred->issuer_attribute,
66 subject_pkey,
67 cred->subject_attribute,
68 signature,
69 cred->expiration.abs_value_us);
70 }
71 GNUNET_free (subject_pkey);
72 GNUNET_free (issuer_pkey);
73 GNUNET_free (signature);
74
75 return cred_str;
76}
77
78
79struct GNUNET_ABD_Delegate *
80GNUNET_ABD_delegate_from_string (const char *s)
81{
82 struct GNUNET_ABD_Delegate *dele;
83 size_t enclen = (sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey)) * 8;
84 if (enclen % 5 > 0)
85 enclen += 5 - enclen % 5;
86 enclen /= 5; /* 260/5 = 52 */
87 char subject_pkey[enclen + 1];
88 char issuer_pkey[enclen + 1];
89 char iss_attr[253 + 1];
90 // Needs to be initialized, in case of Type 1 credential (A.a <- B)
91 char sub_attr[253 + 1] = "";
92 char signature[256]; // TODO max payload size
93
94 struct GNUNET_CRYPTO_EcdsaSignature *sig;
95 struct GNUNET_TIME_Absolute etime_abs;
96
97 // If it's A.a <- B.b...
98 if (6 != sscanf (s,
99 "%52s.%253s -> %52s.%253s | %s | %" SCNu64,
100 issuer_pkey,
101 iss_attr,
102 subject_pkey,
103 sub_attr,
104 signature,
105 &etime_abs.abs_value_us))
106 {
107 // Try if it's A.a <- B
108 if (5 != sscanf (s,
109 "%52s.%253s -> %52s | %s | %" SCNu64,
110 issuer_pkey,
111 iss_attr,
112 subject_pkey,
113 signature,
114 &etime_abs.abs_value_us))
115 {
116 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
117 "Unable to parse DEL record string `%s'\n",
118 s);
119 return NULL;
120 }
121 }
122
123 // +1 for \0
124 int attr_len;
125 if (strcmp (sub_attr, "") == 0)
126 {
127 attr_len = strlen (iss_attr) + 1;
128 }
129 else
130 {
131 attr_len = strlen (iss_attr) + strlen (sub_attr) + 2;
132 }
133 dele = GNUNET_malloc (sizeof (struct GNUNET_ABD_Delegate) + attr_len);
134
135 char tmp_str[attr_len];
136 GNUNET_memcpy (tmp_str, iss_attr, strlen (iss_attr));
137 if (strcmp (sub_attr, "") != 0)
138 {
139 tmp_str[strlen (iss_attr)] = '\0';
140 GNUNET_memcpy (tmp_str + strlen (iss_attr) + 1,
141 sub_attr,
142 strlen (sub_attr));
143 }
144 tmp_str[attr_len - 1] = '\0';
145
146 GNUNET_CRYPTO_ecdsa_public_key_from_string (subject_pkey,
147 strlen (subject_pkey),
148 &dele->subject_key);
149 GNUNET_CRYPTO_ecdsa_public_key_from_string (issuer_pkey,
150 strlen (issuer_pkey),
151 &dele->issuer_key);
152 GNUNET_assert (sizeof (struct GNUNET_CRYPTO_EcdsaSignature) ==
153 GNUNET_STRINGS_base64_decode (signature,
154 strlen (signature),
155 (void **) &sig));
156 dele->signature = *sig;
157 dele->expiration = etime_abs;
158 GNUNET_free (sig);
159
160 GNUNET_memcpy (&dele[1], tmp_str, attr_len);
161
162 dele->issuer_attribute = (char *) &dele[1];
163 dele->issuer_attribute_len = strlen (iss_attr);
164 if (strcmp (sub_attr, "") == 0)
165 {
166 dele->subject_attribute = NULL;
167 dele->subject_attribute_len = 0;
168 }
169 else
170 {
171 dele->subject_attribute = (char *) &dele[1] + strlen (iss_attr) + 1;
172 dele->subject_attribute_len = strlen (sub_attr);
173 }
174
175 return dele;
176}
177
178
179/**
180 * Issue an attribute to a subject
181 *
182 * @param issuer the ego that should be used to issue the attribute
183 * @param subject the subject of the attribute
184 * @param iss_attr the name of the attribute
185 * @return handle to the queued request
186 */
187
188struct GNUNET_ABD_Delegate *
189GNUNET_ABD_delegate_issue (
190 const struct GNUNET_CRYPTO_EcdsaPrivateKey *issuer,
191 struct GNUNET_CRYPTO_EcdsaPublicKey *subject,
192 const char *iss_attr,
193 const char *sub_attr,
194 struct GNUNET_TIME_Absolute *expiration)
195{
196 struct DelegateEntry *del;
197 struct GNUNET_ABD_Delegate *dele;
198 size_t size;
199 int attr_len;
200
201 if (NULL == sub_attr)
202 {
203 // +1 for \0
204 attr_len = strlen (iss_attr) + 1;
205 }
206 else
207 {
208 // +2 for both strings need to be terminated with \0
209 attr_len = strlen (iss_attr) + strlen (sub_attr) + 2;
210 }
211 size = sizeof (struct DelegateEntry) + attr_len;
212
213 char tmp_str[attr_len];
214 GNUNET_memcpy (tmp_str, iss_attr, strlen (iss_attr));
215 if (NULL != sub_attr)
216 {
217 tmp_str[strlen (iss_attr)] = '\0';
218 GNUNET_memcpy (tmp_str + strlen (iss_attr) + 1,
219 sub_attr,
220 strlen (sub_attr));
221 }
222 tmp_str[attr_len - 1] = '\0';
223
224 del = GNUNET_malloc (size);
225 del->purpose.size =
226 htonl (size - sizeof (struct GNUNET_CRYPTO_EcdsaSignature));
227 del->purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_DELEGATE);
228 GNUNET_CRYPTO_ecdsa_key_get_public (issuer, &del->issuer_key);
229 del->subject_key = *subject;
230 del->expiration = GNUNET_htonll (expiration->abs_value_us);
231 del->issuer_attribute_len = htonl (strlen (iss_attr) + 1);
232 if (NULL == sub_attr)
233 {
234 del->subject_attribute_len = htonl (0);
235 }
236 else
237 {
238 del->subject_attribute_len = htonl (strlen (sub_attr) + 1);
239 }
240
241 GNUNET_memcpy (&del[1], tmp_str, attr_len);
242
243 GNUNET_CRYPTO_ecdsa_sign (issuer, del, &del->signature);
244
245 dele = GNUNET_malloc (sizeof (struct GNUNET_ABD_Delegate) + attr_len);
246 dele->signature = del->signature;
247 dele->expiration = *expiration;
248 GNUNET_CRYPTO_ecdsa_key_get_public (issuer, &dele->issuer_key);
249
250 dele->subject_key = *subject;
251
252 // Copy the combined string at the part in the memory where the struct ends
253 GNUNET_memcpy (&dele[1], tmp_str, attr_len);
254
255 dele->issuer_attribute = (char *) &dele[1];
256 dele->issuer_attribute_len = strlen (iss_attr);
257 if (NULL == sub_attr)
258 {
259 dele->subject_attribute = NULL;
260 dele->subject_attribute_len = 0;
261 }
262 else
263 {
264 dele->subject_attribute = (char *) &dele[1] + strlen (iss_attr) + 1;
265 dele->subject_attribute_len = strlen (sub_attr);
266 }
267
268 GNUNET_free (del);
269 return dele;
270}