GNUnet 0.22.0
delegate_misc.c File Reference

Misc API for delegate. More...

#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_constants.h"
#include "gnunet_abd_service.h"
#include "gnunet_signatures.h"
#include "abd.h"
#include <inttypes.h>
#include "delegate_misc.h"
Include dependency graph for delegate_misc.c:

Go to the source code of this file.

Functions

char * GNUNET_ABD_delegate_to_string (const struct GNUNET_ABD_Delegate *cred)
 
struct GNUNET_ABD_DelegateGNUNET_ABD_delegate_from_string (const char *s)
 
struct GNUNET_ABD_DelegateGNUNET_ABD_delegate_issue (const struct GNUNET_CRYPTO_PrivateKey *issuer, struct GNUNET_CRYPTO_PublicKey *subject, const char *iss_attr, const char *sub_attr, struct GNUNET_TIME_Absolute *expiration)
 Issue an attribute to a subject. More...
 

Detailed Description

Misc API for delegate.

Author
Martin Schanzenbach

Definition in file delegate_misc.c.

Function Documentation

◆ GNUNET_ABD_delegate_to_string()

char * GNUNET_ABD_delegate_to_string ( const struct GNUNET_ABD_Delegate cred)

Definition at line 38 of file delegate_misc.c.

40{
41 char *cred_str;
42 char *subject_pkey;
43 char *issuer_pkey;
44 char *signature;
45
48 GNUNET_STRINGS_base64_encode ((char *) &cred->signature,
49 sizeof (struct GNUNET_CRYPTO_Signature),
50 &signature);
51 if (0 == cred->subject_attribute_len)
52 {
53 GNUNET_asprintf (&cred_str,
54 "%s.%s -> %s | %s | %" SCNu64,
56 cred->issuer_attribute,
58 signature,
59 cred->expiration.abs_value_us);
60 }
61 else
62 {
63 GNUNET_asprintf (&cred_str,
64 "%s.%s -> %s.%s | %s | %" SCNu64,
66 cred->issuer_attribute,
68 cred->subject_attribute,
69 signature,
70 cred->expiration.abs_value_us);
71 }
74 GNUNET_free (signature);
75
76 return cred_str;
77}
struct GNUNET_CRYPTO_PublicKey issuer_pkey
Issuer key.
Definition: gnunet-abd.c:107
struct GNUNET_CRYPTO_PublicKey subject_pkey
Subject key.
Definition: gnunet-abd.c:102
static gnutls_certificate_credentials_t cred
The credential.
char * GNUNET_CRYPTO_public_key_to_string(const struct GNUNET_CRYPTO_PublicKey *key)
Creates a (Base32) string representation of the public key.
Definition: crypto_pkey.c:379
int int GNUNET_asprintf(char **buf, const char *format,...) __attribute__((format(printf
Like asprintf, just portable.
#define GNUNET_free(ptr)
Wrapper around free.
size_t GNUNET_STRINGS_base64_encode(const void *in, size_t len, char **output)
Encode into Base64.
Definition: strings.c:1622
An identity signature as per LSD0001.

References cred, GNUNET_asprintf(), GNUNET_CRYPTO_public_key_to_string(), GNUNET_free, GNUNET_STRINGS_base64_encode(), issuer_pkey, and subject_pkey.

Referenced by abd_value_to_string(), handle_collect_result(), and sign_cb().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GNUNET_ABD_delegate_from_string()

struct GNUNET_ABD_Delegate * GNUNET_ABD_delegate_from_string ( const char *  s)

Definition at line 81 of file delegate_misc.c.

82{
83 struct GNUNET_ABD_Delegate *dele;
84 size_t enclen = (sizeof (struct GNUNET_CRYPTO_PublicKey)) * 8;
85 if (enclen % 5 > 0)
86 enclen += 5 - enclen % 5;
87 enclen /= 5; /* 260/5 = 52 */
88 char subject_pkey[enclen + 1];
89 char issuer_pkey[enclen + 1];
90 char iss_attr[253 + 1];
91 // Needs to be initialized, in case of Type 1 credential (A.a <- B)
92 char sub_attr[253 + 1] = "";
93 char signature[256]; // TODO max payload size
94
95 struct GNUNET_CRYPTO_Signature *sig;
96 struct GNUNET_TIME_Absolute etime_abs;
97
98 // If it's A.a <- B.b...
99 if (6 != sscanf (s,
100 "%58s.%253s -> %58s.%253s | %s | %" SCNu64,
102 iss_attr,
104 sub_attr,
105 signature,
106 &etime_abs.abs_value_us))
107 {
108 // Try if it's A.a <- B
109 if (5 != sscanf (s,
110 "%58s.%253s -> %58s | %s | %" SCNu64,
112 iss_attr,
114 signature,
115 &etime_abs.abs_value_us))
116 {
118 "Unable to parse DEL record string `%s'\n",
119 s);
120 return NULL;
121 }
122 }
123
124 // +1 for \0
125 int attr_len;
126 if (strcmp (sub_attr, "") == 0)
127 {
128 attr_len = strlen (iss_attr) + 1;
129 }
130 else
131 {
132 attr_len = strlen (iss_attr) + strlen (sub_attr) + 2;
133 }
134 dele = GNUNET_malloc (sizeof (struct GNUNET_ABD_Delegate) + attr_len);
135
136 char tmp_str[attr_len];
137 GNUNET_memcpy (tmp_str, iss_attr, strlen (iss_attr));
138 if (strcmp (sub_attr, "") != 0)
139 {
140 tmp_str[strlen (iss_attr)] = '\0';
141 GNUNET_memcpy (tmp_str + strlen (iss_attr) + 1,
142 sub_attr,
143 strlen (sub_attr));
144 }
145 tmp_str[attr_len - 1] = '\0';
146
147 if (GNUNET_SYSERR ==
149 &dele->subject_key))
150 {
151 GNUNET_free (dele);
152 return NULL;
153 }
154 if (GNUNET_SYSERR ==
156 &dele->issuer_key))
157 {
158 GNUNET_free (dele);
159 return NULL;
160 }
161 GNUNET_assert (sizeof (struct GNUNET_CRYPTO_Signature) ==
163 strlen (signature),
164 (void **) &sig));
165 dele->signature = *sig;
166 dele->expiration = etime_abs;
167 GNUNET_free (sig);
168
169 GNUNET_memcpy (&dele[1], tmp_str, attr_len);
170
171 dele->issuer_attribute = (char *) &dele[1];
172 dele->issuer_attribute_len = strlen (iss_attr);
173 if (strcmp (sub_attr, "") == 0)
174 {
175 dele->subject_attribute = NULL;
176 dele->subject_attribute_len = 0;
177 }
178 else
179 {
180 dele->subject_attribute = (char *) &dele[1] + strlen (iss_attr) + 1;
181 dele->subject_attribute_len = strlen (sub_attr);
182 }
183
184 return dele;
185}
#define GNUNET_log(kind,...)
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_public_key_from_string(const char *str, struct GNUNET_CRYPTO_PublicKey *key)
Parses a (Base32) string representation of the public key.
Definition: crypto_pkey.c:399
@ GNUNET_SYSERR
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
@ GNUNET_ERROR_TYPE_ERROR
#define GNUNET_malloc(size)
Wrapper around malloc.
size_t GNUNET_STRINGS_base64_decode(const char *data, size_t len, void **output)
Decode from Base64.
Definition: strings.c:1724
const char * subject_attribute
The subject attribute.
const char * issuer_attribute
The issuer attribute.
uint32_t issuer_attribute_len
Length of the issuer attribute.
uint32_t subject_attribute_len
Length of the subject attribute.
struct GNUNET_CRYPTO_Signature signature
Signature of this credential.
struct GNUNET_CRYPTO_PublicKey issuer_key
The issuer of the credential.
struct GNUNET_TIME_Absolute expiration
Expiration of this credential.
struct GNUNET_CRYPTO_PublicKey subject_key
Public key of the subject this credential was issued to.
An identity key as per LSD0001.
Time for absolute times used by GNUnet, in microseconds.

References GNUNET_TIME_Absolute::abs_value_us, GNUNET_ABD_Delegate::expiration, GNUNET_assert, GNUNET_CRYPTO_public_key_from_string(), GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_log, GNUNET_malloc, GNUNET_memcpy, GNUNET_STRINGS_base64_decode(), GNUNET_SYSERR, GNUNET_ABD_Delegate::issuer_attribute, GNUNET_ABD_Delegate::issuer_attribute_len, GNUNET_ABD_Delegate::issuer_key, issuer_pkey, GNUNET_ABD_Delegate::signature, GNUNET_ABD_Delegate::subject_attribute, GNUNET_ABD_Delegate::subject_attribute_len, GNUNET_ABD_Delegate::subject_key, and subject_pkey.

Referenced by abd_string_to_value(), run(), and store_cb().

Here is the call graph for this function:
Here is the caller graph for this function: