circuitpython/tools/gen_crt_bundle.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

297 lines
9.1 KiB
Python
Raw Normal View History

2022-10-05 14:05:56 -04:00
#!/usr/bin/env python
#
# ESP32 x509 certificate bundle generation utility
#
# Converts PEM and DER certificates to a custom bundle format which stores just the
# subject name and public key to reduce space
#
# The bundle will have the format: number of certificates; crt 1 subject name length; crt 1 public key length;
# crt 1 subject name; crt 1 public key; crt 2...
#
# Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
2022-10-05 14:06:23 -04:00
# http://www.apache.org/licenses/LICENSE-2.0
2022-10-05 14:05:56 -04:00
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import with_statement
import argparse
import csv
import os
import re
import struct
import sys
import textwrap
2022-10-05 14:05:56 -04:00
from io import open
try:
from cryptography import x509
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives import serialization
except ImportError:
2022-10-05 14:06:23 -04:00
print(
"The cryptography package is not installed."
"Please refer to the Get Started section of the ESP-IDF Programming Guide for "
"setting up the required packages."
)
2022-10-05 14:05:56 -04:00
raise
2022-10-05 14:06:23 -04:00
ca_bundle_bin_file = "x509_crt_bundle"
2022-10-05 14:05:56 -04:00
quiet = False
def status(msg):
2022-10-05 14:06:23 -04:00
"""Print status message to stderr"""
2022-10-05 14:05:56 -04:00
if not quiet:
critical(msg)
def critical(msg):
2022-10-05 14:06:23 -04:00
"""Print critical message to stderr"""
sys.stderr.write("gen_crt_bundle.py: ")
2022-10-05 14:05:56 -04:00
sys.stderr.write(msg)
2022-10-05 14:06:23 -04:00
sys.stderr.write("\n")
2022-10-05 14:05:56 -04:00
class CertificateBundle:
def __init__(self):
self.certificates = []
self.compressed_crts = []
if os.path.isfile(ca_bundle_bin_file):
os.remove(ca_bundle_bin_file)
def add_from_path(self, crts_path):
found = False
for file_path in os.listdir(crts_path):
found |= self.add_from_file(os.path.join(crts_path, file_path))
if found is False:
2022-10-05 14:06:23 -04:00
raise InputError("No valid x509 certificates found in %s" % crts_path)
2022-10-05 14:05:56 -04:00
def add_from_file(self, file_path):
try:
2022-10-05 14:06:23 -04:00
if file_path.endswith(".pem"):
status("Parsing certificates from %s" % file_path)
with open(file_path, "r", encoding="utf-8") as f:
2022-10-05 14:05:56 -04:00
crt_str = f.read()
self.add_from_pem(crt_str)
return True
2022-10-05 14:06:23 -04:00
elif file_path.endswith(".der"):
status("Parsing certificates from %s" % file_path)
with open(file_path, "rb") as f:
2022-10-05 14:05:56 -04:00
crt_str = f.read()
self.add_from_der(crt_str)
return True
except ValueError:
2022-10-05 14:06:23 -04:00
critical("Invalid certificate in %s" % file_path)
raise InputError("Invalid certificate")
2022-10-05 14:05:56 -04:00
return False
def add_from_pem(self, crt_str):
2022-10-05 14:06:23 -04:00
"""A single PEM file may have multiple certificates"""
2022-10-05 14:05:56 -04:00
2022-10-05 14:06:23 -04:00
crt = ""
2022-10-05 14:05:56 -04:00
count = 0
start = False
for strg in crt_str.splitlines(True):
2022-10-05 14:06:23 -04:00
if strg == "-----BEGIN CERTIFICATE-----\n" and start is False:
crt = ""
2022-10-05 14:05:56 -04:00
start = True
2022-10-05 14:06:23 -04:00
elif strg == "-----END CERTIFICATE-----\n" and start is True:
crt += strg + "\n"
2022-10-05 14:05:56 -04:00
start = False
2022-10-05 14:06:23 -04:00
self.certificates.append(
x509.load_pem_x509_certificate(crt.encode(), default_backend())
)
2022-10-05 14:05:56 -04:00
count += 1
if start is True:
crt += strg
2022-10-05 14:06:23 -04:00
if count == 0:
raise InputError("No certificate found")
2022-10-05 14:05:56 -04:00
2022-10-05 14:06:23 -04:00
status("Successfully added %d certificates" % count)
2022-10-05 14:05:56 -04:00
def add_from_der(self, crt_str):
self.certificates.append(x509.load_der_x509_certificate(crt_str, default_backend()))
2022-10-05 14:06:23 -04:00
status("Successfully added 1 certificate")
2022-10-05 14:05:56 -04:00
def create_bundle(self):
# Sort certificates in order to do binary search when looking up certificates
2022-10-05 14:06:23 -04:00
self.certificates = sorted(
self.certificates, key=lambda cert: cert.subject.public_bytes(default_backend())
)
2022-10-05 14:05:56 -04:00
2022-10-05 14:06:23 -04:00
bundle = struct.pack(">H", len(self.certificates))
2022-10-05 14:05:56 -04:00
for crt in self.certificates:
2022-10-05 14:06:23 -04:00
"""Read the public key as DER format"""
2022-10-05 14:05:56 -04:00
pub_key = crt.public_key()
2022-10-05 14:06:23 -04:00
pub_key_der = pub_key.public_bytes(
serialization.Encoding.DER, serialization.PublicFormat.SubjectPublicKeyInfo
)
2022-10-05 14:05:56 -04:00
""" Read the subject name as DER format """
sub_name_der = crt.subject.public_bytes(default_backend())
name_len = len(sub_name_der)
key_len = len(pub_key_der)
2022-10-05 14:06:23 -04:00
len_data = struct.pack(">HH", name_len, key_len)
2022-10-05 14:05:56 -04:00
bundle += len_data
bundle += sub_name_der
bundle += pub_key_der
return bundle
def add_with_filter(self, crts_path, filter_path):
filter_set = set()
2022-10-05 14:06:23 -04:00
with open(filter_path, "r", encoding="utf-8") as f:
csv_reader = csv.reader(f, delimiter=",")
2022-10-05 14:05:56 -04:00
# Skip header
next(csv_reader)
for row in csv_reader:
filter_set.add(row[1])
2022-10-05 14:06:23 -04:00
status("Parsing certificates from %s" % crts_path)
2022-10-05 14:05:56 -04:00
crt_str = []
2022-10-05 14:06:23 -04:00
with open(crts_path, "r", encoding="utf-8") as f:
2022-10-05 14:05:56 -04:00
crt_str = f.read()
# Split all certs into a list of (name, certificate string) tuples
2022-10-05 14:06:23 -04:00
pem_crts = re.findall(
r"(^.+?)\n(=+\n[\s\S]+?END CERTIFICATE-----\n)", crt_str, re.MULTILINE
)
2022-10-05 14:05:56 -04:00
2022-10-05 14:06:23 -04:00
filtered_crts = ""
2022-10-05 14:05:56 -04:00
for name, crt in pem_crts:
if name in filter_set:
filtered_crts += crt
self.add_from_pem(filtered_crts)
class InputError(RuntimeError):
def __init__(self, e):
super(InputError, self).__init__(e)
def main():
global quiet
2022-10-05 14:06:23 -04:00
parser = argparse.ArgumentParser(description="ESP-IDF x509 certificate bundle utility")
parser.add_argument(
"--quiet",
"-q",
help="Don't print non-critical status messages to stderr",
action="store_true",
)
parser.add_argument(
"--input",
"-i",
nargs="+",
required=True,
help="Paths to the custom certificate folders or files to parse, parses all .pem or .der files",
)
parser.add_argument(
"--filter",
"-f",
help="Path to CSV-file where the second columns contains the name of the certificates \
that should be included from cacrt_all.pem",
)
parser.add_argument(
"--asm",
"-S",
action="store_true",
default=False,
help="Output an asm file for use with gas, rather than a binary file",
)
parser.add_argument("--symbol", help="The symbol to define", default="x509_crt_bundle")
parser.add_argument("--output", "-o", help="The output file", default=None)
2022-10-05 14:05:56 -04:00
args = parser.parse_args()
quiet = args.quiet
bundle = CertificateBundle()
for path in args.input:
if os.path.isfile(path):
2022-10-05 14:06:23 -04:00
if os.path.basename(path) == "cacrt_all.pem" and args.filter:
2022-10-05 14:05:56 -04:00
bundle.add_with_filter(path, args.filter)
else:
bundle.add_from_file(path)
elif os.path.isdir(path):
bundle.add_from_path(path)
else:
2022-10-05 14:06:23 -04:00
raise InputError("Invalid --input=%s, is neither file nor folder" % args.input)
2022-10-05 14:05:56 -04:00
2022-10-05 14:06:23 -04:00
status("Successfully added %d certificates in total" % len(bundle.certificates))
2022-10-05 14:05:56 -04:00
crt_bundle = bundle.create_bundle()
if args.asm:
symbol = args.symbol
filename = args.output or (ca_bundle_bin_file + ".S")
with open(filename, "w") as f:
print(
textwrap.dedent(
f"""\
// Generated from {" ".join(args.input)} with {len(bundle.certificates)} certificates
.data
.section .rodata.embedded
.global {symbol}
.global _binary_{symbol}_start
.global _binary_{symbol}_end
{symbol}:
_binary_{symbol}_start:
"""
),
file=f,
)
for i in range(0, len(crt_bundle), 16):
chunk = crt_bundle[i : i + 16]
formatted = ", ".join(f"0x{byte:02x}" for byte in chunk)
print(f".byte {formatted}", file=f)
print(
textwrap.dedent(
f"""\
_binary_{symbol}_end:
{symbol}_length:
.word {len(crt_bundle)}
"""
),
file=f,
)
else:
filename = args.output or ca_bundle_bin_file
with open(filename, "wb") as f:
f.write(crt_bundle)
2022-10-05 14:05:56 -04:00
2022-10-05 14:06:23 -04:00
if __name__ == "__main__":
2022-10-05 14:05:56 -04:00
try:
main()
except InputError as e:
print(e)
sys.exit(2)