blob: 51bd4b6bb33b1931ec6b1c1518450e2e552527a5 [file]
/* Copyright (C) 2019 Jeremy Thien <jeremy.thien@gmail.com>
Copyright (C) 2024-2025 maClara, LLC <info@maclara-llc.com>
This file is part of the JWT C Library
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 <stdio.h>
#include <stdlib.h>
#include <jwt.h>
#include <getopt.h>
#include <string.h>
#include <time.h>
#include <string.h>
#include <libgen.h>
#include "jwt-util.h"
_Noreturn static void usage(const char *error, int exit_state)
{
if (error)
fprintf(stderr, "ERROR: %s\n\n", error);
fprintf(stderr, "\
Usage: %s [OPTIONS]\n\
\n\
Generate and (optionally) sign a JSON Web Token\n\
\n\
-h, --help This help information\n\
-l, --list List supported algorithms and exit\n\
-a, --algorithm=ALG JWT algorithm to use (e.g. ES256). Only needed if the\n\
key provided with -k does not have an \"alg\"\n\
attribute\n\
-p, --print=CMD When printing JSON, pipe through CMD\n\
-n, --no-iat Disable adding iat (Issued-At) to token\n\
-k, --key=FILE Filename containing a JSON Web Key\n\
-c, --claim=t:k=v Add a claim to the JWT\n\
t One of i, s, or b for integer, string or boolean\n\
k The key for this claim\n\
v The value of the claim. For integer, must be parsable\n\
by strtol(). For boolean, if the value starts with 'f',\n\
'F', or '0' it is taken as false. Anything else is true.\n\
-j, --json=STRING JSON string to be used as the body of the token.\n\
-q, --quiet No output other than the generated token\n\
-v, --verbose Show encoded header and payload while generating. Note that\n\
the header will not show the 'typ' and 'alg' attributes as\n\
they are not added until just before signing.\n\
\n\
This program will encode and sign a token in JWT format.\n\
\n\
For the --print option, output will be piped to the command's stdin. This\n\
is useful if you wanted to use something like `jq -C` to colorize it. A\n\
non-0 exit status will stop the token from getting generated.\n\
\n\
If you need to convert a key to JWT (e.g. from PEM or DER format) see\n\
key2jwk(1).\n", get_progname());
exit(exit_state);
}
int main(int argc, char *argv[])
{
char *t = NULL, *k = NULL, *v = NULL;
jwk_set_auto_t *jwk_set = NULL;
const jwk_item_t *item = NULL;
char* json = NULL;
jwt_builder_auto_t *builder = NULL;
jwt_value_t jval;
char *token;
char *key_file = NULL;
jwt_alg_t alg = JWT_ALG_NONE;
int oc = 0;
int verbose = 0;
int quiet = 0;
int emit_iat = 1;
char *optstr = "a:c:b:hj:k:lnp:qv";
struct option opttbl[] = {
{ "algorithm", required_argument, NULL, 'a' },
{ "claim", required_argument, NULL, 'c' },
{ "help", no_argument, NULL, 'h' },
{ "json", required_argument, NULL, 'j' },
{ "key", required_argument, NULL, 'k' },
{ "list", no_argument, NULL, 'l' },
{ "no-iat", no_argument, NULL, 'n' },
{ "print", required_argument, NULL, 'p' },
{ "quiet", no_argument, NULL, 'q' },
{ "verbose", no_argument, NULL, 'v' },
{ NULL, 0, 0, 0 },
};
builder = jwt_builder_new();
if (builder == NULL) {
fprintf(stderr, "Could not allocate builder context\n");
exit(EXIT_FAILURE);
}
while ((oc = getopt_long(argc, argv, optstr, opttbl, NULL)) != -1) {
switch (oc) {
case 'q':
if (verbose)
usage("Using -q and -v makes no sense",
EXIT_FAILURE);
quiet = 1;
break;
case 'v':
if (quiet)
usage("Using -q and -v makes no sense",
EXIT_FAILURE);
verbose = 1;
break;
case 'p':
pipe_cmd = optarg;
break;
case 'l':
printf("Algorithms supported:\n");
for (alg = JWT_ALG_NONE; alg < JWT_ALG_INVAL; alg++) {
const char *name = jwt_alg_str(alg);
/* An alg compiled out of this build (e.g.
* ML-DSA without WITH_ML_DSA) has no name. */
if (name != NULL)
printf(" %s\n", name);
}
exit(EXIT_SUCCESS);
break;
case 'k':
key_file = optarg;
break;
case 'n':
emit_iat = 0;
break;
case 'a':
alg = jwt_str_alg(optarg);
if (alg >= JWT_ALG_INVAL) {
usage("Unknown algorithm (use -l to see a list of "
"supported algorithms)\n", EXIT_FAILURE);
}
break;
case 'c':
t = strtok(optarg, ":");
if (t == NULL) {
fprintf(stderr, "Invalid claim format [%s]\n",
optarg);
exit(EXIT_FAILURE);
}
k = strtok(NULL, "=");
if (k == NULL) {
fprintf(stderr, "Invalid claim format [%s]\n",
optarg);
exit(EXIT_FAILURE);
}
v = strtok(NULL, "=");
if (v == NULL) {
fprintf(stderr, "Invalid claim format [%s]\n",
optarg);
exit(EXIT_FAILURE);
}
switch (t[0]) {
case 's':
jwt_set_SET_STR(&jval, k, v);
break;
case 'i':
jwt_set_SET_INT(&jval, k, strtol(v, NULL, 0));
break;
case 'b':
if (v[0] == 'f' || v[0] == 'F' || v[0] == '0')
jwt_set_SET_BOOL(&jval, k, 0);
else
jwt_set_SET_BOOL(&jval, k, 1);
break;
default:
usage("Invalid --claim format",
EXIT_FAILURE);
}
if (jwt_builder_claim_set(builder, &jval)) {
fprintf(stderr, "Error setting %s:%s=%s\n",
t, k, v);
exit(EXIT_FAILURE);
}
break;
case 'j':
json = optarg;
break;
case 'h':
usage(NULL, EXIT_SUCCESS);
default: /* '?' */
usage("Unknown argument", EXIT_FAILURE);
}
}
argc -= optind;
argv += optind;
if (argc)
usage("Unknown extra arguments", EXIT_FAILURE);
if (key_file == NULL && alg != JWT_ALG_NONE)
usage("An algorithm other than 'none' requires a key",
EXIT_FAILURE);
if (alg != JWT_ALG_NONE && key_file == NULL)
usage("Algorithm requires --key",
EXIT_FAILURE);
jwt_builder_enable_iat(builder, emit_iat);
if (key_file) {
jwk_set = jwks_create_fromfile(key_file);
if (jwk_set == NULL || jwks_error(jwk_set)) {
fprintf(stderr, "ERR: Could not read JWK: %s\n",
jwks_error_msg(jwk_set));
exit(EXIT_FAILURE);
}
/* Get the first key */
item = jwks_item_get(jwk_set, 0);
if (jwks_item_error(item)) {
fprintf(stderr, "ERR: Could not read JWK: %s\n",
jwks_item_error_msg(item));
exit(EXIT_FAILURE);
}
if (jwks_item_alg(item) == JWT_ALG_NONE &&
alg == JWT_ALG_NONE) {
usage("No \"alg\" attribute in key and --alg not given",
EXIT_FAILURE);
}
if (jwt_builder_setkey(builder, alg, item)) {
fprintf(stderr, "ERR Loading key: %s\n",
jwt_builder_error_msg(builder));
exit(EXIT_FAILURE);
}
}
if (json) {
if (jwt_builder_claim_set(builder,
jwt_set_SET_JSON(&jval, NULL, json))) {
fprintf(stderr, "Error setting JSON (%d)\n",
jval.error);
exit(EXIT_FAILURE);
}
}
if (verbose && jwt_builder_setcb(builder, __jwt_wcb, NULL)) {
fprintf(stderr, "ERR setting callback: %s\n",
jwt_builder_error_msg(builder));
exit(EXIT_FAILURE);
}
json_fp = stderr;
if (item && !quiet)
fprintf(stderr, "\xF0\x9F\x94\x91 \033[0;92m[KEY]\033[0m %s\n",
key_file);
if (!quiet) {
fprintf(stderr, "\xF0\x9F\x93\x83 ");
if (item && jwks_item_alg(item) != JWT_ALG_NONE) {
fprintf(stderr, "\033[0;92m[ALG]\033[0m %s (from key)",
jwt_alg_str(jwks_item_alg(item)));
alg = jwks_item_alg(item);
} else if (alg != JWT_ALG_NONE) {
fprintf(stderr, "\033[0;92m[ALG]\033[0m %s (from options)",
jwt_alg_str(alg));
} else {
fprintf(stderr, "\033[0;91m[ALG]\033[0m %s", jwt_alg_str(alg));
}
fprintf(stderr, "\n");
}
token = jwt_builder_generate(builder);
if (token == NULL) {
fprintf(stderr, "ERR Generating Token: %s\n",
jwt_builder_error_msg(builder));
exit(EXIT_FAILURE);
}
if (quiet) {
printf("%s\n", token);
} else {
fprintf(stderr, "%s %s[TOK]\033[0m \n", alg == JWT_ALG_NONE ?
"\xF0\x9F\x94\x93" : "\xF0\x9F\x94\x90",
alg == JWT_ALG_NONE ? "\033[0;93m" : "\033[0;92m");
printf("%s\n", token);
}
free(token);
return 0;
}