GNUnet  0.20.0
json_reclaim.c File Reference
#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_json_lib.h"
#include "gnunet_reclaim_lib.h"
#include "gnunet_reclaim_service.h"
Include dependency graph for json_reclaim.c:

Go to the source code of this file.

Functions

static int parse_attr (void *cls, json_t *root, struct GNUNET_JSON_Specification *spec)
 Parse given JSON object to a claim. More...
 
static void clean_attr (void *cls, struct GNUNET_JSON_Specification *spec)
 Cleanup data left from parsing RSA public key. More...
 
struct GNUNET_JSON_Specification GNUNET_RECLAIM_JSON_spec_attribute (struct GNUNET_RECLAIM_Attribute **attr)
 JSON Specification for Reclaim claims. More...
 
static int parse_ticket (void *cls, json_t *root, struct GNUNET_JSON_Specification *spec)
 Parse given JSON object to a ticket. More...
 
static void clean_ticket (void *cls, struct GNUNET_JSON_Specification *spec)
 Cleanup data left from parsing RSA public key. More...
 
struct GNUNET_JSON_Specification GNUNET_RECLAIM_JSON_spec_ticket (struct GNUNET_RECLAIM_Ticket **ticket)
 JSON Specification for Reclaim tickets. More...
 
static int parse_credential (void *cls, json_t *root, struct GNUNET_JSON_Specification *spec)
 Parse given JSON object to a credential claim. More...
 
static void clean_credential (void *cls, struct GNUNET_JSON_Specification *spec)
 Cleanup data left from parsing RSA public key. More...
 
struct GNUNET_JSON_Specification GNUNET_RECLAIM_JSON_spec_credential (struct GNUNET_RECLAIM_Credential **cred)
 JSON Specification for credential claims. More...
 

Function Documentation

◆ parse_attr()

static int parse_attr ( void *  cls,
json_t *  root,
struct GNUNET_JSON_Specification spec 
)
static

Parse given JSON object to a claim.

Parameters
clsclosure, NULL
rootthe json object representing data
specwhere to write the data
Returns
GNUNET_OK upon successful parsing; GNUNET_SYSERR upon error

Definition at line 42 of file json_reclaim.c.

43 {
44  struct GNUNET_RECLAIM_Attribute *attr;
45  const char *name_str = NULL;
46  const char *val_str = NULL;
47  const char *type_str = NULL;
48  const char *id_str = NULL;
49  const char *cred_str = NULL;
50  const char *flag_str = NULL;
51  char *data;
52  int unpack_state;
53  uint32_t type;
54  size_t data_size;
55 
56  GNUNET_assert (NULL != root);
57 
58  if (! json_is_object (root))
59  {
61  "Error json is not array nor object!\n");
62  return GNUNET_SYSERR;
63  }
64  // interpret single attribute
65  unpack_state = json_unpack (root,
66  "{s:s, s?s, s?s, s:s, s:s, s?s!}",
67  "name",
68  &name_str,
69  "id",
70  &id_str,
71  "credential",
72  &cred_str,
73  "type",
74  &type_str,
75  "value",
76  &val_str,
77  "flag",
78  &flag_str);
79  if ((0 != unpack_state) || (NULL == name_str) || (NULL == val_str) ||
80  (NULL == type_str))
81  {
83  "Error json object has a wrong format!\n");
84  return GNUNET_SYSERR;
85  }
87  if (GNUNET_SYSERR ==
89  val_str,
90  (void **) &data,
91  &data_size)))
92  {
93  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Attribute value invalid!\n");
94  return GNUNET_SYSERR;
95  }
96  attr = GNUNET_RECLAIM_attribute_new (name_str, NULL,
97  type, data, data_size);
98  GNUNET_free (data);
99  if ((NULL != cred_str) && (0 != strlen (cred_str)))
100  {
102  strlen (cred_str),
103  &attr->credential,
104  sizeof(attr->credential));
105  }
106  if ((NULL == id_str) || (0 == strlen (id_str)))
107  memset (&attr->id, 0, sizeof (attr->id));
108  else
110  strlen (id_str),
111  &attr->id,
112  sizeof(attr->id));
113 
114  *(struct GNUNET_RECLAIM_Attribute **) spec->ptr = attr;
115  return GNUNET_OK;
116 }
static size_t data_size
Number of bytes in data.
Definition: gnunet-abd.c:187
uint32_t data
The data value.
static char * type_str
Attribute type.
#define GNUNET_log(kind,...)
@ GNUNET_OK
@ GNUNET_SYSERR
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_ERROR_TYPE_DEBUG
#define GNUNET_free(ptr)
Wrapper around free.
int GNUNET_RECLAIM_attribute_string_to_value(uint32_t type, const char *s, void **data, size_t *data_size)
Convert human-readable version of a 'claim' of an attribute to the binary representation.
struct GNUNET_RECLAIM_Attribute * GNUNET_RECLAIM_attribute_new(const char *attr_name, const struct GNUNET_RECLAIM_Identifier *credential, uint32_t type, const void *data, size_t data_size)
Create a new attribute claim.
uint32_t GNUNET_RECLAIM_attribute_typename_to_number(const char *typename)
Convert a type name to the corresponding number.
enum GNUNET_GenericReturnValue GNUNET_STRINGS_string_to_data(const char *enc, size_t enclen, void *out, size_t out_size)
Convert CrockfordBase32 encoding back to data.
Definition: strings.c:788
void * ptr
Pointer, details specific to the parser.
struct GNUNET_RECLAIM_Identifier credential
Referenced ID of credential (may be GNUNET_RECLAIM_ID_ZERO if self-creded)
struct GNUNET_RECLAIM_Identifier id
ID.
enum GNUNET_TESTBED_UnderlayLinkModelType type
the type of this model

References GNUNET_RECLAIM_Attribute::credential, data, data_size, GNUNET_assert, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_log, GNUNET_OK, GNUNET_RECLAIM_attribute_new(), GNUNET_RECLAIM_attribute_string_to_value(), GNUNET_RECLAIM_attribute_typename_to_number(), GNUNET_STRINGS_string_to_data(), GNUNET_SYSERR, GNUNET_RECLAIM_Attribute::id, GNUNET_JSON_Specification::ptr, type, and type_str.

Here is the call graph for this function:

◆ clean_attr()

static void clean_attr ( void *  cls,
struct GNUNET_JSON_Specification spec 
)
static

Cleanup data left from parsing RSA public key.

Parameters
clsclosure, NULL
[out]specwhere to free the data

Definition at line 126 of file json_reclaim.c.

127 {
128  struct GNUNET_RECLAIM_Attribute **attr;
129 
130  attr = (struct GNUNET_RECLAIM_Attribute **) spec->ptr;
131  if (NULL != *attr)
132  {
133  GNUNET_free (*attr);
134  *attr = NULL;
135  }
136 }

References GNUNET_free, and GNUNET_JSON_Specification::ptr.

◆ GNUNET_RECLAIM_JSON_spec_attribute()

struct GNUNET_JSON_Specification GNUNET_RECLAIM_JSON_spec_attribute ( struct GNUNET_RECLAIM_Attribute **  attr)

JSON Specification for Reclaim claims.

Parameters
ticketstruct of GNUNET_RECLAIM_Attribute to fill
Returns
JSON Specification

Definition at line 126 of file json_reclaim.c.

147 {
148  struct GNUNET_JSON_Specification ret = { .parser = &parse_attr,
149  .cleaner = &clean_attr,
150  .cls = NULL,
151  .field = NULL,
152  .ptr = attr,
153  .ptr_size = 0,
154  .size_ptr = NULL };
155 
156  *attr = NULL;
157  return ret;
158 }
static int ret
Return value of the commandline.
Definition: gnunet-abd.c:81
static void clean_attr(void *cls, struct GNUNET_JSON_Specification *spec)
Cleanup data left from parsing RSA public key.
Definition: json_reclaim.c:126
static int parse_attr(void *cls, json_t *root, struct GNUNET_JSON_Specification *spec)
Parse given JSON object to a claim.
Definition: json_reclaim.c:42
Entry in parser specification for GNUNET_JSON_parse().

Referenced by add_attribute_cont().

Here is the caller graph for this function:

◆ parse_ticket()

static int parse_ticket ( void *  cls,
json_t *  root,
struct GNUNET_JSON_Specification spec 
)
static

Parse given JSON object to a ticket.

Parameters
clsclosure, NULL
rootthe json object representing data
specwhere to write the data
Returns
GNUNET_OK upon successful parsing; GNUNET_SYSERR upon error

Definition at line 170 of file json_reclaim.c.

171 {
173  const char *rnd_str;
174  const char *aud_str;
175  const char *id_str;
176  int unpack_state;
177 
178  GNUNET_assert (NULL != root);
179 
180  if (! json_is_object (root))
181  {
183  "Error json is not array nor object!\n");
184  return GNUNET_SYSERR;
185  }
186  // interpret single ticket
187  unpack_state = json_unpack (root,
188  "{s:s, s:s, s:s!}",
189  "rnd",
190  &rnd_str,
191  "audience",
192  &aud_str,
193  "issuer",
194  &id_str);
195  if (0 != unpack_state)
196  {
198  "Error json object has a wrong format!\n");
199  return GNUNET_SYSERR;
200  }
203  strlen (rnd_str),
204  &ticket->rnd,
205  sizeof(ticket->rnd)))
206  {
207  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Rnd invalid\n");
209  return GNUNET_SYSERR;
210  }
211  if (GNUNET_OK !=
213  strlen (id_str),
214  &ticket->identity,
215  sizeof(ticket->identity)))
216  {
217  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Identity invalid\n");
219  return GNUNET_SYSERR;
220  }
221 
222  if (GNUNET_OK !=
224  strlen (aud_str),
225  &ticket->audience,
226  sizeof(ticket->audience)))
227  {
228  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Audience invalid\n");
230  return GNUNET_SYSERR;
231  }
232 
233  *(struct GNUNET_RECLAIM_Ticket **) spec->ptr = ticket;
234  return GNUNET_OK;
235 }
static struct GNUNET_RECLAIM_Ticket ticket
Ticket to consume.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
The authorization ticket.
struct GNUNET_RECLAIM_Identifier rnd
The ticket random identifier.
struct GNUNET_IDENTITY_PublicKey audience
The ticket audience (= relying party)
struct GNUNET_IDENTITY_PublicKey identity
The ticket issuer (= the user)

References GNUNET_RECLAIM_Ticket::audience, GNUNET_assert, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_log, GNUNET_new, GNUNET_OK, GNUNET_STRINGS_string_to_data(), GNUNET_SYSERR, GNUNET_RECLAIM_Ticket::identity, GNUNET_JSON_Specification::ptr, GNUNET_RECLAIM_Ticket::rnd, and ticket.

Here is the call graph for this function:

◆ clean_ticket()

static void clean_ticket ( void *  cls,
struct GNUNET_JSON_Specification spec 
)
static

Cleanup data left from parsing RSA public key.

Parameters
clsclosure, NULL
[out]specwhere to free the data

Definition at line 245 of file json_reclaim.c.

246 {
247  struct GNUNET_RECLAIM_Ticket **ticket;
248 
249  ticket = (struct GNUNET_RECLAIM_Ticket **) spec->ptr;
250  if (NULL != *ticket)
251  {
252  GNUNET_free (*ticket);
253  *ticket = NULL;
254  }
255 }

References GNUNET_free, GNUNET_JSON_Specification::ptr, and ticket.

◆ GNUNET_RECLAIM_JSON_spec_ticket()

struct GNUNET_JSON_Specification GNUNET_RECLAIM_JSON_spec_ticket ( struct GNUNET_RECLAIM_Ticket **  ticket)

JSON Specification for Reclaim tickets.

Parameters
ticketstruct of GNUNET_RECLAIM_Ticket to fill
Returns
JSON Specification

Definition at line 245 of file json_reclaim.c.

266 {
267  struct GNUNET_JSON_Specification ret = { .parser = &parse_ticket,
268  .cleaner = &clean_ticket,
269  .cls = NULL,
270  .field = NULL,
271  .ptr = ticket,
272  .ptr_size = 0,
273  .size_ptr = NULL };
274 
275  *ticket = NULL;
276  return ret;
277 }
static int parse_ticket(void *cls, json_t *root, struct GNUNET_JSON_Specification *spec)
Parse given JSON object to a ticket.
Definition: json_reclaim.c:170
static void clean_ticket(void *cls, struct GNUNET_JSON_Specification *spec)
Cleanup data left from parsing RSA public key.
Definition: json_reclaim.c:245

Referenced by consume_ticket_cont(), and revoke_ticket_cont().

Here is the caller graph for this function:

◆ parse_credential()

static int parse_credential ( void *  cls,
json_t *  root,
struct GNUNET_JSON_Specification spec 
)
static

Parse given JSON object to a credential claim.

Parameters
clsclosure, NULL
rootthe json object representing data
specwhere to write the data
Returns
GNUNET_OK upon successful parsing; GNUNET_SYSERR upon error

Definition at line 289 of file json_reclaim.c.

290 {
291  struct GNUNET_RECLAIM_Credential *cred;
292  const char *name_str = NULL;
293  const char *type_str = NULL;
294  const char *id_str = NULL;
295  json_t *val_json;
296  char *data = NULL;
297  char *val_str = NULL;
298  int unpack_state;
299  uint32_t type;
300  size_t data_size;
301 
302  GNUNET_assert (NULL != root);
303 
304  if (! json_is_object (root))
305  {
307  "Error json is not array nor object!\n");
308  return GNUNET_SYSERR;
309  }
310  // interpret single attribute
311  unpack_state = json_unpack (root,
312  "{s:s, s?s, s:s, s:o!}",
313  "name",
314  &name_str,
315  "id",
316  &id_str,
317  "type",
318  &type_str,
319  "value",
320  &val_json);
321  if ((0 != unpack_state) || (NULL == name_str) || (NULL == val_json) ||
322  (NULL == type_str))
323  {
325  "Error json object has a wrong format!\n");
326  return GNUNET_SYSERR;
327  }
328  if (json_is_string (val_json)) {
329  val_str = GNUNET_strdup (json_string_value (val_json));
330  } else {
331  val_str = json_dumps (val_json, JSON_COMPACT);
332  }
334  if (GNUNET_SYSERR ==
336  val_str,
337  (void **) &data,
338  &data_size)))
339  {
340  GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Credential value invalid!\n");
341  return GNUNET_SYSERR;
342  }
343  cred = GNUNET_RECLAIM_credential_new (name_str, type, data, data_size);
344  GNUNET_free (data);
345  if ((NULL == id_str) || (0 == strlen (id_str)))
346  memset (&cred->id, 0, sizeof (cred->id));
347  else
349  strlen (id_str),
350  &cred->id,
351  sizeof(cred->id));
352 
353  *(struct GNUNET_RECLAIM_Credential **) spec->ptr = cred;
354  return GNUNET_OK;
355 }
#define GNUNET_strdup(a)
Wrapper around GNUNET_xstrdup_.
int GNUNET_RECLAIM_credential_string_to_value(uint32_t type, const char *s, void **data, size_t *data_size)
Convert human-readable version of a 'claim' of an credential to the binary representation.
struct GNUNET_RECLAIM_Credential * GNUNET_RECLAIM_credential_new(const char *name, uint32_t type, const void *data, size_t data_size)
Create a new credential.
uint32_t GNUNET_RECLAIM_credential_typename_to_number(const char *typename)
Convert an credential type name to the corresponding number.
struct GNUNET_RECLAIM_Identifier id
ID.

References data, data_size, GNUNET_assert, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_log, GNUNET_OK, GNUNET_RECLAIM_credential_new(), GNUNET_RECLAIM_credential_string_to_value(), GNUNET_RECLAIM_credential_typename_to_number(), GNUNET_strdup, GNUNET_STRINGS_string_to_data(), GNUNET_SYSERR, GNUNET_RECLAIM_Credential::id, GNUNET_JSON_Specification::ptr, type, and type_str.

Here is the call graph for this function:

◆ clean_credential()

static void clean_credential ( void *  cls,
struct GNUNET_JSON_Specification spec 
)
static

Cleanup data left from parsing RSA public key.

Parameters
clsclosure, NULL
[out]specwhere to free the data

Definition at line 365 of file json_reclaim.c.

366 {
367  struct GNUNET_RECLAIM_Credential **attr;
368 
369  attr = (struct GNUNET_RECLAIM_Credential **) spec->ptr;
370  if (NULL != *attr)
371  {
372  GNUNET_free (*attr);
373  *attr = NULL;
374  }
375 }

References GNUNET_free, and GNUNET_JSON_Specification::ptr.

◆ GNUNET_RECLAIM_JSON_spec_credential()

struct GNUNET_JSON_Specification GNUNET_RECLAIM_JSON_spec_credential ( struct GNUNET_RECLAIM_Credential **  cred)

JSON Specification for credential claims.

JSON Specification for credentials.

Parameters
attrstruct of GNUNET_RECLAIM_Credential to fill
Returns
JSON Specification

Definition at line 365 of file json_reclaim.c.

387 {
388  struct GNUNET_JSON_Specification ret = { .parser = &parse_credential,
389  .cleaner = &clean_credential,
390  .cls = NULL,
391  .field = NULL,
392  .ptr = cred,
393  .ptr_size = 0,
394  .size_ptr = NULL };
395 
396  *cred = NULL;
397  return ret;
398 }
static int parse_credential(void *cls, json_t *root, struct GNUNET_JSON_Specification *spec)
Parse given JSON object to a credential claim.
Definition: json_reclaim.c:289
static void clean_credential(void *cls, struct GNUNET_JSON_Specification *spec)
Cleanup data left from parsing RSA public key.
Definition: json_reclaim.c:365

Referenced by add_credential_cont().

Here is the caller graph for this function: