1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
/* Copyright (C) 2015-2025 maClara, LLC <info@maclara-llc.com>
This file is part of the JWT C Library
SPDX-License-Identifier: MPL-2.0
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <jwt.h>
#include "base64.h"
#include "jwt-private.h"
static int write_js(const json_t *js, char **buf)
{
*buf = json_dumps(js, JSON_SORT_KEYS | JSON_COMPACT);
return *buf == NULL ? 1 : 0;
}
int jwt_head_setup(jwt_t *jwt)
{
jwt_value_t jval;
if (jwt->alg != JWT_ALG_NONE) {
/* Only set default 'typ' header if it has not been defined,
* allowing for any value of it. This allows for signaling
* of application specific extensions to JWT, such as PASSporT,
* RFC 8225. */
jwt_set_SET_STR(&jval, "typ", "JWT");
if (jwt_header_set(jwt, &jval)) {
if (jval.error != JWT_VALUE_ERR_EXIST) {
// LCOV_EXCL_START
jwt_write_error(jwt,
"Error setting \"typ\" in header");
return 1;
// LCOV_EXCL_STOP
}
}
}
jwt_set_SET_STR(&jval, "alg", jwt_alg_str(jwt->alg));
jval.replace = 1;
if (jwt_header_set(jwt, &jval)) {
// LCOV_EXCL_START
jwt_write_error(jwt, "Error setting \"alg\" in header");
return 1;
// LCOV_EXCL_STOP
}
return 0;
}
static int jwt_encode(jwt_t *jwt, char **out)
{
char_auto *head = NULL, *payload = NULL, *sig = NULL;
char *buf = NULL;
int ret, head_len, payload_len;
unsigned int sig_len;
if (out == NULL) {
// LCOV_EXCL_START
jwt_write_error(jwt, "No string passed to write out to");
return 1;
// LCOV_EXCL_STOP
}
*out = NULL;
/* First the header. */
ret = write_js(jwt->headers, &buf);
if (ret)
return 1; // LCOV_EXCL_LINE
/* Encode it */
head_len = jwt_base64uri_encode(&head, buf, (int)strlen(buf));
jwt_freemem(buf);
if (head_len <= 0) {
// LCOV_EXCL_START
jwt_write_error(jwt, "Error encoding header");
return 1;
// LCOV_EXCL_STOP
}
/* Now the payload. */
ret = write_js(jwt->claims, &buf);
if (ret) {
// LCOV_EXCL_START
jwt_write_error(jwt, "Error writing payload");
return 1;
// LCOV_EXCL_STOP
}
payload_len = jwt_base64uri_encode(&payload, buf, (int)strlen(buf));
jwt_freemem(buf);
if (payload_len <= 0) {
// LCOV_EXCL_START
jwt_write_error(jwt, "Error encoding payload");
return 1;
// LCOV_EXCL_STOP
}
/* The part we need to sign, but add space for 2 dots and a nil */
buf = jwt_malloc(head_len + payload_len + 3);
if (buf == NULL) {
// LCOV_EXCL_START
jwt_write_error(jwt, "Error allocating memory");
return 1;
// LCOV_EXCL_STOP
}
strcpy(buf, head);
strcat(buf, ".");
strcat(buf, payload);
if (jwt->alg == JWT_ALG_NONE) {
/* Add the trailing dot, and send it back */
strcat(buf, ".");
*out = buf;
return 0;
}
/* At this point buf has "head.payload" */
/* Now the signature. */
ret = jwt_sign(jwt, &sig, &sig_len, buf, strlen(buf));
jwt_freemem(buf);
if (ret) {
// LCOV_EXCL_START
jwt_write_error(jwt, "Error allocating memory");
return ret;
// LCOV_EXCL_STOP
}
ret = jwt_base64uri_encode(&buf, sig, sig_len);
/* At this point buf has b64 of sig and ret is size of it */
if (ret < 0) {
// LCOV_EXCL_START
jwt_write_error(jwt, "Error allocating memory");
return 1;
// LCOV_EXCL_STOP
}
/* plus 2 dots and a nil */
ret = strlen(head) + strlen(payload) + strlen(buf) + 3;
/* We're good, so let's get it all together */
*out = jwt_malloc(ret);
// LCOV_EXCL_START
if (*out == NULL) {
jwt_write_error(jwt, "Error allocating memory");
ret = 1;
} else {
sprintf(*out, "%s.%s.%s", head, payload, buf);
ret = 0;
}
// LCOV_EXCL_STOP
jwt_freemem(buf);
return ret;
}
char *jwt_encode_str(jwt_t *jwt)
{
char *str = NULL;
if (jwt_encode(jwt, &str))
jwt_freemem(str);
return str;
}
|