added check for empty nonce string
[oweals/gnunet.git] / src / reclaim / oidc_helper.c
1 /*
2    This file is part of GNUnet
3    Copyright (C) 2010-2015 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  * @file reclaim/oidc_helper.c
23  * @brief helper library for OIDC related functions
24  * @author Martin Schanzenbach
25  */
26 #include "platform.h"
27 #include <inttypes.h>
28 #include <jansson.h>
29 #include "gnunet_util_lib.h"
30 #include "gnunet_reclaim_attribute_lib.h"
31 #include "gnunet_reclaim_service.h"
32 #include "gnunet_signatures.h"
33 #include "oidc_helper.h"
34
35
36 static char *
37 create_jwt_header (void)
38 {
39   json_t *root;
40   char *json_str;
41
42   root = json_object ();
43   json_object_set_new (root, JWT_ALG, json_string (JWT_ALG_VALUE));
44   json_object_set_new (root, JWT_TYP, json_string (JWT_TYP_VALUE));
45
46   json_str = json_dumps (root, JSON_INDENT (0) | JSON_COMPACT);
47   json_decref (root);
48   return json_str;
49 }
50
51 static void
52 replace_char (char *str, char find, char replace)
53 {
54   char *current_pos = strchr (str, find);
55   while (current_pos)
56   {
57     *current_pos = replace;
58     current_pos = strchr (current_pos, find);
59   }
60 }
61
62 // RFC4648
63 static void
64 fix_base64 (char *str)
65 {
66   // Replace + with -
67   replace_char (str, '+', '-');
68
69   // Replace / with _
70   replace_char (str, '/', '_');
71 }
72
73 /**
74  * Create a JWT from attributes
75  *
76  * @param aud_key the public of the audience
77  * @param sub_key the public key of the subject
78  * @param attrs the attribute list
79  * @param expiration_time the validity of the token
80  * @param secret_key the key used to sign the JWT
81  * @return a new base64-encoded JWT string.
82  */
83 char *
84 OIDC_id_token_new (const struct GNUNET_CRYPTO_EcdsaPublicKey *aud_key,
85                    const struct GNUNET_CRYPTO_EcdsaPublicKey *sub_key,
86                    const struct GNUNET_RECLAIM_ATTRIBUTE_ClaimList *attrs,
87                    const struct GNUNET_TIME_Relative *expiration_time,
88                    const char *nonce,
89                    const char *secret_key)
90 {
91   struct GNUNET_RECLAIM_ATTRIBUTE_ClaimListEntry *le;
92   struct GNUNET_HashCode signature;
93   struct GNUNET_TIME_Absolute exp_time;
94   struct GNUNET_TIME_Absolute time_now;
95   char *audience;
96   char *subject;
97   char *header;
98   char *body_str;
99   char *result;
100   char *header_base64;
101   char *body_base64;
102   char *signature_target;
103   char *signature_base64;
104   char *attr_val_str;
105   json_t *body;
106
107   // iat REQUIRED time now
108   time_now = GNUNET_TIME_absolute_get ();
109   // exp REQUIRED time expired from config
110   exp_time = GNUNET_TIME_absolute_add (time_now, *expiration_time);
111   // auth_time only if max_age
112   // nonce only if nonce
113   // OPTIONAL acr,amr,azp
114   subject =
115     GNUNET_STRINGS_data_to_string_alloc (sub_key,
116                                          sizeof (struct
117                                                  GNUNET_CRYPTO_EcdsaPublicKey));
118   audience =
119     GNUNET_STRINGS_data_to_string_alloc (aud_key,
120                                          sizeof (struct
121                                                  GNUNET_CRYPTO_EcdsaPublicKey));
122   header = create_jwt_header ();
123   body = json_object ();
124
125   // iss REQUIRED case sensitive server uri with https
126   // The issuer is the local reclaim instance (e.g.
127   // https://reclaim.id/api/openid)
128   json_object_set_new (body, "iss", json_string (SERVER_ADDRESS));
129   // sub REQUIRED public key identity, not exceed 255 ASCII  length
130   json_object_set_new (body, "sub", json_string (subject));
131   // aud REQUIRED public key client_id must be there
132   json_object_set_new (body, "aud", json_string (audience));
133   // iat
134   json_object_set_new (body,
135                        "iat",
136                        json_integer (time_now.abs_value_us / (1000 * 1000)));
137   // exp
138   json_object_set_new (body,
139                        "exp",
140                        json_integer (exp_time.abs_value_us / (1000 * 1000)));
141   // nbf
142   json_object_set_new (body,
143                        "nbf",
144                        json_integer (time_now.abs_value_us / (1000 * 1000)));
145   // nonce
146   if (NULL != nonce)
147     json_object_set_new (body, "nonce", json_string (nonce));
148
149   for (le = attrs->list_head; NULL != le; le = le->next)
150   {
151     attr_val_str =
152       GNUNET_RECLAIM_ATTRIBUTE_value_to_string (le->claim->type,
153                                                 le->claim->data,
154                                                 le->claim->data_size);
155     json_object_set_new (body, le->claim->name, json_string (attr_val_str));
156     GNUNET_free (attr_val_str);
157   }
158   body_str = json_dumps (body, JSON_INDENT (0) | JSON_COMPACT);
159   json_decref (body);
160
161   GNUNET_STRINGS_base64_encode (header, strlen (header), &header_base64);
162   fix_base64 (header_base64);
163
164   GNUNET_STRINGS_base64_encode (body_str, strlen (body_str), &body_base64);
165   fix_base64 (body_base64);
166
167   GNUNET_free (subject);
168   GNUNET_free (audience);
169
170   /**
171    * Creating the JWT signature. This might not be
172    * standards compliant, check.
173    */
174   GNUNET_asprintf (&signature_target, "%s.%s", header_base64, body_base64);
175   GNUNET_CRYPTO_hmac_raw (secret_key,
176                           strlen (secret_key),
177                           signature_target,
178                           strlen (signature_target),
179                           &signature);
180   GNUNET_STRINGS_base64_encode ((const char *) &signature,
181                                 sizeof (struct GNUNET_HashCode),
182                                 &signature_base64);
183   fix_base64 (signature_base64);
184
185   GNUNET_asprintf (&result,
186                    "%s.%s.%s",
187                    header_base64,
188                    body_base64,
189                    signature_base64);
190
191   GNUNET_free (signature_target);
192   GNUNET_free (header);
193   GNUNET_free (body_str);
194   GNUNET_free (signature_base64);
195   GNUNET_free (body_base64);
196   GNUNET_free (header_base64);
197   return result;
198 }
199
200 /* Converts a hex character to its integer value */
201 static char
202 from_hex (char ch)
203 {
204   return isdigit (ch) ? ch - '0' : tolower (ch) - 'a' + 10;
205 }
206
207 /* Converts an integer value to its hex character*/
208 static char
209 to_hex (char code)
210 {
211   static char hex[] = "0123456789abcdef";
212   return hex[code & 15];
213 }
214
215 /* Returns a url-encoded version of str */
216 /* IMPORTANT: be sure to free() the returned string after use */
217 static char *
218 url_encode (const char *str)
219 {
220   char *pstr = (char *) str;
221   char *buf = GNUNET_malloc (strlen (str) * 3 + 1);
222   char *pbuf = buf;
223   while (*pstr)
224   {
225     if (isalnum (*pstr) || *pstr == '-' || *pstr == '_' || *pstr == '.' ||
226         *pstr == '~')
227       *pbuf++ = *pstr;
228     else if (*pstr == ' ')
229       *pbuf++ = '+';
230     else
231     {
232       *pbuf++ = '%';
233       *pbuf++ = to_hex (*pstr >> 4);
234       *pbuf++ = to_hex (*pstr & 15);
235     }
236     pstr++;
237   }
238   *pbuf = '\0';
239   return buf;
240 }
241
242
243 /* Returns a url-decoded version of str */
244 /* IMPORTANT: be sure to free() the returned string after use */
245 static char *
246 url_decode (const char *str)
247 {
248   char *pstr = (char *) str;
249   char *buf = GNUNET_malloc (strlen (str) + 1);
250   char *pbuf = buf;
251   while (*pstr)
252   {
253     if (*pstr == '%')
254     {
255       if (pstr[1] && pstr[2])
256       {
257         *pbuf++ = from_hex (pstr[1]) << 4 | from_hex (pstr[2]);
258         pstr += 2;
259       }
260     }
261     else if (*pstr == '+')
262     {
263       *pbuf++ = ' ';
264     }
265     else
266     {
267       *pbuf++ = *pstr;
268     }
269     pstr++;
270   }
271   *pbuf = '\0';
272   return buf;
273 }
274
275
276 /**
277  * Returns base64 encoded string urlencoded
278  *
279  * @param string the string to encode
280  * @return base64 encoded string
281  */
282 static char *
283 base64_encode (const char *data, size_t data_size)
284 {
285   char *enc;
286   char *enc_urlencode;
287
288   GNUNET_STRINGS_base64_encode (data, data_size, &enc);
289   enc_urlencode = url_encode (enc);
290   GNUNET_free (enc);
291   return enc_urlencode;
292 }
293
294
295 static void
296 derive_aes_key (struct GNUNET_CRYPTO_SymmetricSessionKey *key,
297                 struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
298                 struct GNUNET_HashCode *key_material)
299 {
300   static const char ctx_key[] = "reclaim-aes-ctx-key";
301   static const char ctx_iv[] = "reclaim-aes-ctx-iv";
302   GNUNET_CRYPTO_kdf (key,
303                      sizeof (struct GNUNET_CRYPTO_SymmetricSessionKey),
304                      ctx_key,
305                      strlen (ctx_key),
306                      key_material,
307                      sizeof (struct GNUNET_HashCode),
308                      NULL);
309   GNUNET_CRYPTO_kdf (iv,
310                      sizeof (
311                              struct GNUNET_CRYPTO_SymmetricInitializationVector),
312                      ctx_iv,
313                      strlen (ctx_iv),
314                      key_material,
315                      sizeof (struct GNUNET_HashCode),
316                      NULL);
317 }
318
319
320 static void
321 calculate_key_priv (struct GNUNET_CRYPTO_SymmetricSessionKey *key,
322                     struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
323                     const struct GNUNET_CRYPTO_EcdsaPrivateKey *ecdsa_priv,
324                     const struct GNUNET_CRYPTO_EcdhePublicKey *ecdh_pub)
325 {
326   struct GNUNET_HashCode key_material;
327   GNUNET_CRYPTO_ecdsa_ecdh (ecdsa_priv, ecdh_pub, &key_material);
328   derive_aes_key (key, iv, &key_material);
329 }
330
331
332 static void
333 calculate_key_pub (struct GNUNET_CRYPTO_SymmetricSessionKey *key,
334                    struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
335                    const struct GNUNET_CRYPTO_EcdsaPublicKey *ecdsa_pub,
336                    const struct GNUNET_CRYPTO_EcdhePrivateKey *ecdh_priv)
337 {
338   struct GNUNET_HashCode key_material;
339   GNUNET_CRYPTO_ecdh_ecdsa (ecdh_priv, ecdsa_pub, &key_material);
340   derive_aes_key (key, iv, &key_material);
341 }
342
343
344 static void
345 decrypt_payload (const struct GNUNET_CRYPTO_EcdsaPrivateKey *ecdsa_priv,
346                  const struct GNUNET_CRYPTO_EcdhePublicKey *ecdh_pub,
347                  const char *ct,
348                  size_t ct_len,
349                  char *buf)
350 {
351   struct GNUNET_CRYPTO_SymmetricSessionKey key;
352   struct GNUNET_CRYPTO_SymmetricInitializationVector iv;
353
354   calculate_key_priv (&key, &iv, ecdsa_priv, ecdh_pub);
355   GNUNET_break (GNUNET_CRYPTO_symmetric_decrypt (ct, ct_len, &key, &iv, buf));
356 }
357
358
359 static void
360 encrypt_payload (const struct GNUNET_CRYPTO_EcdsaPublicKey *ecdsa_pub,
361                  const struct GNUNET_CRYPTO_EcdhePrivateKey *ecdh_priv,
362                  const char *payload,
363                  size_t payload_len,
364                  char *buf)
365 {
366   struct GNUNET_CRYPTO_SymmetricSessionKey key;
367   struct GNUNET_CRYPTO_SymmetricInitializationVector iv;
368
369   calculate_key_pub (&key, &iv, ecdsa_pub, ecdh_priv);
370   GNUNET_break (
371                 GNUNET_CRYPTO_symmetric_encrypt (payload, payload_len, &key, &iv, buf));
372 }
373
374
375 /**
376  * Builds an OIDC authorization code including
377  * a reclaim ticket and nonce
378  *
379  * @param issuer the issuer of the ticket, used to sign the ticket and nonce
380  * @param ticket the ticket to include in the code
381  * @param attrs list of attributes whicha re shared
382  * @param nonce the nonce to include in the code
383  * @return a new authorization code (caller must free)
384  */
385 char *
386 OIDC_build_authz_code (const struct GNUNET_CRYPTO_EcdsaPrivateKey *issuer,
387                        const struct GNUNET_RECLAIM_Ticket *ticket,
388                        struct GNUNET_RECLAIM_ATTRIBUTE_ClaimList *attrs,
389                        const char *nonce_str)
390 {
391   char *code_payload;
392   char *plaintext;
393   char *attrs_ser;
394   char *code_str;
395   char *buf_ptr;
396   size_t signature_payload_len;
397   size_t attr_list_len;
398   size_t code_payload_len;
399   uint32_t nonce;
400   uint32_t nonce_tmp;
401   struct GNUNET_CRYPTO_EccSignaturePurpose *purpose;
402   struct GNUNET_CRYPTO_EcdhePrivateKey *ecdh_priv;
403   struct GNUNET_CRYPTO_EcdhePublicKey ecdh_pub;
404
405   attrs_ser = NULL;
406   signature_payload_len =
407     sizeof (struct GNUNET_RECLAIM_Ticket) + sizeof (uint32_t);
408   
409   if (NULL != attrs)
410   {
411     attr_list_len = GNUNET_RECLAIM_ATTRIBUTE_list_serialize_get_size (attrs);
412     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
413                 "Length of serialized attributes: %lu\n",
414                 attr_list_len);
415     signature_payload_len += attr_list_len;
416     attrs_ser = GNUNET_malloc (attr_list_len);
417     GNUNET_RECLAIM_ATTRIBUTE_list_serialize (attrs, attrs_ser);
418   }
419
420   code_payload_len = sizeof (struct GNUNET_CRYPTO_EccSignaturePurpose) +
421     sizeof (struct GNUNET_CRYPTO_EcdhePublicKey) +
422     signature_payload_len +
423     sizeof (struct GNUNET_CRYPTO_EcdsaSignature);
424   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
425               "Length of data to encode: %lu\n",
426               code_payload_len);
427   plaintext = GNUNET_malloc (signature_payload_len);
428   // First, copy ticket
429   buf_ptr = plaintext;
430   memcpy (buf_ptr, ticket, sizeof (struct GNUNET_RECLAIM_Ticket));
431   buf_ptr += sizeof (struct GNUNET_RECLAIM_Ticket);
432   
433   // Then copy nonce
434   nonce = 0;
435   if (NULL != nonce_str && strcmp("", nonce_str) != 0)
436   {
437     if ((1 != SSCANF (nonce_str, "%u", &nonce)) || (nonce > UINT32_MAX))
438     {
439       GNUNET_break (0);
440       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid nonce %s\n", nonce_str);
441       GNUNET_free (plaintext);
442       GNUNET_free_non_null (attrs_ser);
443       return NULL;
444     }
445     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
446                 "Got nonce: %u from %s\n",
447                 nonce,
448                 nonce_str);
449   }
450   nonce_tmp = htonl (nonce);
451   memcpy (buf_ptr, &nonce_tmp, sizeof (uint32_t));
452   buf_ptr += sizeof (uint32_t);
453   
454   // Finally, attributes
455   if (NULL != attrs_ser)
456   {
457     memcpy (buf_ptr, attrs_ser, attr_list_len);
458     GNUNET_free (attrs_ser);
459   }
460   // Generate ECDH key
461   ecdh_priv = GNUNET_CRYPTO_ecdhe_key_create ();
462   GNUNET_CRYPTO_ecdhe_key_get_public (ecdh_priv, &ecdh_pub);
463   // Initialize code payload
464   code_payload = GNUNET_malloc (code_payload_len);
465   GNUNET_assert (NULL != code_payload);
466   purpose = (struct GNUNET_CRYPTO_EccSignaturePurpose *) code_payload;
467   purpose->size = htonl (sizeof (struct GNUNET_CRYPTO_EccSignaturePurpose) +
468                          sizeof (ecdh_pub) + signature_payload_len);
469   purpose->purpose = htonl (GNUNET_SIGNATURE_PURPOSE_RECLAIM_CODE_SIGN);
470   // Store pubkey
471   buf_ptr = (char *) &purpose[1];
472   memcpy (buf_ptr, &ecdh_pub, sizeof (ecdh_pub));
473   buf_ptr += sizeof (ecdh_pub);
474   // Encrypt plaintext and store
475   encrypt_payload (&ticket->audience,
476                    ecdh_priv,
477                    plaintext,
478                    signature_payload_len,
479                    buf_ptr);
480   GNUNET_free (ecdh_priv);
481   GNUNET_free (plaintext);
482   buf_ptr += signature_payload_len;
483   // Sign and store signature
484   if (GNUNET_SYSERR ==
485       GNUNET_CRYPTO_ecdsa_sign (issuer,
486                                 purpose,
487                                 (struct GNUNET_CRYPTO_EcdsaSignature *)
488                                 buf_ptr))
489   {
490     GNUNET_break (0);
491     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Unable to sign code\n");
492     GNUNET_free (code_payload);
493     return NULL;
494   }
495   code_str = base64_encode (code_payload, code_payload_len);
496   GNUNET_free (code_payload);
497   return code_str;
498 }
499
500
501 /**
502  * Parse reclaim ticket and nonce from
503  * authorization code.
504  * This also verifies the signature in the code.
505  *
506  * @param audience the expected audience of the code
507  * @param code the string representation of the code
508  * @param ticket where to store the ticket
509  * @param attrs the attributes in the code
510  * @param nonce where to store the nonce
511  * @return GNUNET_OK if successful, else GNUNET_SYSERR
512  */
513 int
514 OIDC_parse_authz_code (const struct GNUNET_CRYPTO_EcdsaPrivateKey *ecdsa_priv,
515                        const char *code,
516                        struct GNUNET_RECLAIM_Ticket *ticket,
517                        struct GNUNET_RECLAIM_ATTRIBUTE_ClaimList **attrs,
518                        char **nonce_str)
519 {
520   char *code_payload;
521   char *ptr;
522   char *plaintext;
523   struct GNUNET_CRYPTO_EccSignaturePurpose *purpose;
524   struct GNUNET_CRYPTO_EcdsaSignature *signature;
525   struct GNUNET_CRYPTO_EcdsaPublicKey ecdsa_pub;
526   struct GNUNET_CRYPTO_EcdhePublicKey *ecdh_pub;
527   size_t code_payload_len;
528   size_t attrs_ser_len;
529   size_t signature_offset;
530   size_t plaintext_len;
531   uint32_t nonce = 0;
532
533   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Trying to decode `%s'\n", code);
534   code_payload = NULL;
535   code_payload_len =
536     GNUNET_STRINGS_base64_decode (code, strlen (code), (void **) &code_payload);
537   if (code_payload_len < sizeof (struct GNUNET_CRYPTO_EccSignaturePurpose) +
538       sizeof (struct GNUNET_CRYPTO_EcdhePublicKey) +
539       sizeof (struct GNUNET_RECLAIM_Ticket) +
540       sizeof (uint32_t) +
541       sizeof (struct GNUNET_CRYPTO_EcdsaSignature))
542   {
543     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Authorization code malformed\n");
544     GNUNET_free_non_null (code_payload);
545     return GNUNET_SYSERR;
546   }
547
548   purpose = (struct GNUNET_CRYPTO_EccSignaturePurpose *) code_payload;
549   attrs_ser_len = code_payload_len;
550   attrs_ser_len -= sizeof (struct GNUNET_CRYPTO_EccSignaturePurpose);
551   ptr = (char *) &purpose[1];
552   // Public ECDH key
553   ecdh_pub = (struct GNUNET_CRYPTO_EcdhePublicKey *) ptr;
554   ptr += sizeof (struct GNUNET_CRYPTO_EcdhePublicKey);
555   attrs_ser_len -= sizeof (struct GNUNET_CRYPTO_EcdhePublicKey);
556
557   // Decrypt ciphertext
558   plaintext_len = attrs_ser_len - sizeof (struct GNUNET_CRYPTO_EcdsaSignature);
559   plaintext = GNUNET_malloc (plaintext_len);
560   decrypt_payload (ecdsa_priv, ecdh_pub, ptr, plaintext_len, plaintext);
561   ptr = plaintext;
562   // Ticket
563   *ticket = *((struct GNUNET_RECLAIM_Ticket *) ptr);
564   attrs_ser_len -= sizeof (struct GNUNET_RECLAIM_Ticket);
565   ptr += sizeof (struct GNUNET_RECLAIM_Ticket);
566   // Nonce
567   nonce = ntohl (*((uint32_t *) ptr));
568   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got nonce: %u\n", nonce);
569   attrs_ser_len -= sizeof (uint32_t);
570   ptr += sizeof (uint32_t);
571   // Attributes
572   attrs_ser_len -= sizeof (struct GNUNET_CRYPTO_EcdsaSignature);
573   *attrs = GNUNET_RECLAIM_ATTRIBUTE_list_deserialize (ptr, attrs_ser_len);
574   // Signature
575   signature_offset =
576     code_payload_len - sizeof (struct GNUNET_CRYPTO_EcdsaSignature);
577   signature =
578     (struct GNUNET_CRYPTO_EcdsaSignature *) &code_payload[signature_offset];
579   GNUNET_CRYPTO_ecdsa_key_get_public (ecdsa_priv, &ecdsa_pub);
580   if (0 != GNUNET_memcmp (&ecdsa_pub, &ticket->audience))
581   {
582     GNUNET_RECLAIM_ATTRIBUTE_list_destroy (*attrs);
583     GNUNET_free (code_payload);
584     GNUNET_free (plaintext);
585     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
586                 "Audience in ticket does not match client!\n");
587     return GNUNET_SYSERR;
588   }
589   if (GNUNET_OK !=
590       GNUNET_CRYPTO_ecdsa_verify (GNUNET_SIGNATURE_PURPOSE_RECLAIM_CODE_SIGN,
591                                   purpose,
592                                   signature,
593                                   &ticket->identity))
594   {
595     GNUNET_RECLAIM_ATTRIBUTE_list_destroy (*attrs);
596     GNUNET_free (code_payload);
597     GNUNET_free (plaintext);
598     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Signature of AuthZ code invalid!\n");
599     return GNUNET_SYSERR;
600   }
601   *nonce_str = NULL;
602   if (nonce != 0)
603     GNUNET_asprintf (nonce_str, "%u", nonce);
604   GNUNET_free (code_payload);
605   GNUNET_free (plaintext);
606   return GNUNET_OK;
607 }
608
609
610 /**
611  * Build a token response for a token request
612  * TODO: Maybe we should add the scope here?
613  *
614  * @param access_token the access token to include
615  * @param id_token the id_token to include
616  * @param expiration_time the expiration time of the token(s)
617  * @param token_response where to store the response
618  */
619 void
620 OIDC_build_token_response (const char *access_token,
621                            const char *id_token,
622                            const struct GNUNET_TIME_Relative *expiration_time,
623                            char **token_response)
624 {
625   json_t *root_json;
626
627   root_json = json_object ();
628
629   GNUNET_assert (NULL != access_token);
630   GNUNET_assert (NULL != id_token);
631   GNUNET_assert (NULL != expiration_time);
632   json_object_set_new (root_json, "access_token", json_string (access_token));
633   json_object_set_new (root_json, "token_type", json_string ("Bearer"));
634   json_object_set_new (root_json,
635                        "expires_in",
636                        json_integer (expiration_time->rel_value_us /
637                                      (1000 * 1000)));
638   json_object_set_new (root_json, "id_token", json_string (id_token));
639   *token_response = json_dumps (root_json, JSON_INDENT (0) | JSON_COMPACT);
640   json_decref (root_json);
641 }
642
643 /**
644  * Generate a new access token
645  */
646 char *
647 OIDC_access_token_new ()
648 {
649   char *access_token;
650   uint64_t random_number;
651
652   random_number =
653     GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_NONCE, UINT64_MAX);
654   GNUNET_STRINGS_base64_encode (&random_number,
655                                 sizeof (uint64_t),
656                                 &access_token);
657   return access_token;
658 }