mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-27 17:11:46 +00:00
Merge branch 'modules-next' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux
Pull module signing support from Rusty Russell: "module signing is the highlight, but it's an all-over David Howells frenzy..." Hmm "Magrathea: Glacier signing key". Somebody has been reading too much HHGTTG. * 'modules-next' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux: (37 commits) X.509: Fix indefinite length element skip error handling X.509: Convert some printk calls to pr_devel asymmetric keys: fix printk format warning MODSIGN: Fix 32-bit overflow in X.509 certificate validity date checking MODSIGN: Make mrproper should remove generated files. MODSIGN: Use utf8 strings in signer's name in autogenerated X.509 certs MODSIGN: Use the same digest for the autogen key sig as for the module sig MODSIGN: Sign modules during the build process MODSIGN: Provide a script for generating a key ID from an X.509 cert MODSIGN: Implement module signature checking MODSIGN: Provide module signing public keys to the kernel MODSIGN: Automatically generate module signing keys if missing MODSIGN: Provide Kconfig options MODSIGN: Provide gitignore and make clean rules for extra files MODSIGN: Add FIPS policy module: signature checking hook X.509: Add a crypto key parser for binary (DER) X.509 certificates MPILIB: Provide a function to read raw data into an MPI X.509: Add an ASN.1 decoder X.509: Add simple ASN.1 grammar compiler ...
This commit is contained in:
commit
d25282d1c9
128 changed files with 6799 additions and 594 deletions
1
scripts/.gitignore
vendored
1
scripts/.gitignore
vendored
|
@ -10,3 +10,4 @@ ihex2fw
|
|||
recordmcount
|
||||
docproc
|
||||
sortextable
|
||||
asn1_compiler
|
||||
|
|
|
@ -16,8 +16,10 @@ hostprogs-$(CONFIG_VT) += conmakehash
|
|||
hostprogs-$(CONFIG_IKCONFIG) += bin2c
|
||||
hostprogs-$(BUILD_C_RECORDMCOUNT) += recordmcount
|
||||
hostprogs-$(CONFIG_BUILDTIME_EXTABLE_SORT) += sortextable
|
||||
hostprogs-$(CONFIG_ASN1) += asn1_compiler
|
||||
|
||||
HOSTCFLAGS_sortextable.o = -I$(srctree)/tools/include
|
||||
HOSTCFLAGS_asn1_compiler.o = -I$(srctree)/include
|
||||
|
||||
always := $(hostprogs-y) $(hostprogs-m)
|
||||
|
||||
|
|
|
@ -354,6 +354,17 @@ quiet_cmd_cpp_lds_S = LDS $@
|
|||
$(obj)/%.lds: $(src)/%.lds.S FORCE
|
||||
$(call if_changed_dep,cpp_lds_S)
|
||||
|
||||
# ASN.1 grammar
|
||||
# ---------------------------------------------------------------------------
|
||||
quiet_cmd_asn1_compiler = ASN.1 $@
|
||||
cmd_asn1_compiler = $(objtree)/scripts/asn1_compiler $< \
|
||||
$(subst .h,.c,$@) $(subst .c,.h,$@)
|
||||
|
||||
.PRECIOUS: $(objtree)/$(obj)/%-asn1.c $(objtree)/$(obj)/%-asn1.h
|
||||
|
||||
$(obj)/%-asn1.c $(obj)/%-asn1.h: $(src)/%.asn1 $(objtree)/scripts/asn1_compiler
|
||||
$(call cmd,asn1_compiler)
|
||||
|
||||
# Build the compiled-in targets
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -14,7 +14,8 @@
|
|||
# 3) create one <module>.mod.c file pr. module
|
||||
# 4) create one Module.symvers file with CRC for all exported symbols
|
||||
# 5) compile all <module>.mod.c files
|
||||
# 6) final link of the module to a <module.ko> file
|
||||
# 6) final link of the module to a <module.ko> (or <module.unsigned>) file
|
||||
# 7) signs the modules to a <module.ko> file
|
||||
|
||||
# Step 3 is used to place certain information in the module's ELF
|
||||
# section, including information such as:
|
||||
|
@ -32,6 +33,8 @@
|
|||
# Step 4 is solely used to allow module versioning in external modules,
|
||||
# where the CRC of each module is retrieved from the Module.symvers file.
|
||||
|
||||
# Step 7 is dependent on CONFIG_MODULE_SIG being enabled.
|
||||
|
||||
# KBUILD_MODPOST_WARN can be set to avoid error out in case of undefined
|
||||
# symbols in the final module linking stage
|
||||
# KBUILD_MODPOST_NOFINAL can be set to skip the final link of modules.
|
||||
|
@ -116,6 +119,7 @@ $(modules:.ko=.mod.o): %.mod.o: %.mod.c FORCE
|
|||
targets += $(modules:.ko=.mod.o)
|
||||
|
||||
# Step 6), final link of the modules
|
||||
ifneq ($(CONFIG_MODULE_SIG),y)
|
||||
quiet_cmd_ld_ko_o = LD [M] $@
|
||||
cmd_ld_ko_o = $(LD) -r $(LDFLAGS) \
|
||||
$(KBUILD_LDFLAGS_MODULE) $(LDFLAGS_MODULE) \
|
||||
|
@ -125,7 +129,78 @@ $(modules): %.ko :%.o %.mod.o FORCE
|
|||
$(call if_changed,ld_ko_o)
|
||||
|
||||
targets += $(modules)
|
||||
else
|
||||
quiet_cmd_ld_ko_unsigned_o = LD [M] $@
|
||||
cmd_ld_ko_unsigned_o = \
|
||||
$(LD) -r $(LDFLAGS) \
|
||||
$(KBUILD_LDFLAGS_MODULE) $(LDFLAGS_MODULE) \
|
||||
-o $@ $(filter-out FORCE,$^) \
|
||||
$(if $(AFTER_LINK),; $(AFTER_LINK))
|
||||
|
||||
$(modules:.ko=.ko.unsigned): %.ko.unsigned :%.o %.mod.o FORCE
|
||||
$(call if_changed,ld_ko_unsigned_o)
|
||||
|
||||
targets += $(modules:.ko=.ko.unsigned)
|
||||
|
||||
# Step 7), sign the modules
|
||||
MODSECKEY = ./signing_key.priv
|
||||
MODPUBKEY = ./signing_key.x509
|
||||
|
||||
ifeq ($(wildcard $(MODSECKEY))+$(wildcard $(MODPUBKEY)),$(MODSECKEY)+$(MODPUBKEY))
|
||||
ifeq ($(KBUILD_SRC),)
|
||||
# no O= is being used
|
||||
SCRIPTS_DIR := scripts
|
||||
else
|
||||
SCRIPTS_DIR := $(KBUILD_SRC)/scripts
|
||||
endif
|
||||
SIGN_MODULES := 1
|
||||
else
|
||||
SIGN_MODULES := 0
|
||||
endif
|
||||
|
||||
# only sign if it's an in-tree module
|
||||
ifneq ($(KBUILD_EXTMOD),)
|
||||
SIGN_MODULES := 0
|
||||
endif
|
||||
|
||||
# We strip the module as best we can - note that using both strip and eu-strip
|
||||
# results in a smaller module than using either alone.
|
||||
EU_STRIP = $(shell which eu-strip || echo true)
|
||||
|
||||
quiet_cmd_sign_ko_stripped_ko_unsigned = STRIP [M] $@
|
||||
cmd_sign_ko_stripped_ko_unsigned = \
|
||||
cp $< $@ && \
|
||||
strip -x -g $@ && \
|
||||
$(EU_STRIP) $@
|
||||
|
||||
ifeq ($(SIGN_MODULES),1)
|
||||
|
||||
quiet_cmd_genkeyid = GENKEYID $@
|
||||
cmd_genkeyid = \
|
||||
perl $(SCRIPTS_DIR)/x509keyid $< $<.signer $<.keyid
|
||||
|
||||
%.signer %.keyid: %
|
||||
$(call if_changed,genkeyid)
|
||||
|
||||
KEYRING_DEP := $(MODSECKEY) $(MODPUBKEY) $(MODPUBKEY).signer $(MODPUBKEY).keyid
|
||||
quiet_cmd_sign_ko_ko_stripped = SIGN [M] $@
|
||||
cmd_sign_ko_ko_stripped = \
|
||||
sh $(SCRIPTS_DIR)/sign-file $(MODSECKEY) $(MODPUBKEY) $< $@
|
||||
else
|
||||
KEYRING_DEP :=
|
||||
quiet_cmd_sign_ko_ko_unsigned = NO SIGN [M] $@
|
||||
cmd_sign_ko_ko_unsigned = \
|
||||
cp $< $@
|
||||
endif
|
||||
|
||||
$(modules): %.ko :%.ko.stripped $(KEYRING_DEP) FORCE
|
||||
$(call if_changed,sign_ko_ko_stripped)
|
||||
|
||||
$(patsubst %.ko,%.ko.stripped,$(modules)): %.ko.stripped :%.ko.unsigned FORCE
|
||||
$(call if_changed,sign_ko_stripped_ko_unsigned)
|
||||
|
||||
targets += $(modules)
|
||||
endif
|
||||
|
||||
# Add FORCE to the prequisites of a target to force it to be always rebuilt.
|
||||
# ---------------------------------------------------------------------------
|
||||
|
|
1545
scripts/asn1_compiler.c
Normal file
1545
scripts/asn1_compiler.c
Normal file
File diff suppressed because it is too large
Load diff
115
scripts/sign-file
Normal file
115
scripts/sign-file
Normal file
|
@ -0,0 +1,115 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Sign a module file using the given key.
|
||||
#
|
||||
# Format: sign-file <key> <x509> <src-file> <dst-file>
|
||||
#
|
||||
|
||||
scripts=`dirname $0`
|
||||
|
||||
CONFIG_MODULE_SIG_SHA512=y
|
||||
if [ -r .config ]
|
||||
then
|
||||
. ./.config
|
||||
fi
|
||||
|
||||
key="$1"
|
||||
x509="$2"
|
||||
src="$3"
|
||||
dst="$4"
|
||||
|
||||
if [ ! -r "$key" ]
|
||||
then
|
||||
echo "Can't read private key" >&2
|
||||
exit 2
|
||||
fi
|
||||
|
||||
if [ ! -r "$x509" ]
|
||||
then
|
||||
echo "Can't read X.509 certificate" >&2
|
||||
exit 2
|
||||
fi
|
||||
if [ ! -r "$x509.signer" ]
|
||||
then
|
||||
echo "Can't read Signer name" >&2
|
||||
exit 2;
|
||||
fi
|
||||
if [ ! -r "$x509.keyid" ]
|
||||
then
|
||||
echo "Can't read Key identifier" >&2
|
||||
exit 2;
|
||||
fi
|
||||
|
||||
#
|
||||
# Signature parameters
|
||||
#
|
||||
algo=1 # Public-key crypto algorithm: RSA
|
||||
hash= # Digest algorithm
|
||||
id_type=1 # Identifier type: X.509
|
||||
|
||||
#
|
||||
# Digest the data
|
||||
#
|
||||
dgst=
|
||||
if [ "$CONFIG_MODULE_SIG_SHA1" = "y" ]
|
||||
then
|
||||
prologue="0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2B, 0x0E, 0x03, 0x02, 0x1A, 0x05, 0x00, 0x04, 0x14"
|
||||
dgst=-sha1
|
||||
hash=2
|
||||
elif [ "$CONFIG_MODULE_SIG_SHA224" = "y" ]
|
||||
then
|
||||
prologue="0x30, 0x2d, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x04, 0x05, 0x00, 0x04, 0x1C"
|
||||
dgst=-sha224
|
||||
hash=7
|
||||
elif [ "$CONFIG_MODULE_SIG_SHA256" = "y" ]
|
||||
then
|
||||
prologue="0x30, 0x31, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00, 0x04, 0x20"
|
||||
dgst=-sha256
|
||||
hash=4
|
||||
elif [ "$CONFIG_MODULE_SIG_SHA384" = "y" ]
|
||||
then
|
||||
prologue="0x30, 0x41, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02, 0x05, 0x00, 0x04, 0x30"
|
||||
dgst=-sha384
|
||||
hash=5
|
||||
elif [ "$CONFIG_MODULE_SIG_SHA512" = "y" ]
|
||||
then
|
||||
prologue="0x30, 0x51, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03, 0x05, 0x00, 0x04, 0x40"
|
||||
dgst=-sha512
|
||||
hash=6
|
||||
else
|
||||
echo "$0: Can't determine hash algorithm" >&2
|
||||
exit 2
|
||||
fi
|
||||
|
||||
(
|
||||
perl -e "binmode STDOUT; print pack(\"C*\", $prologue)" || exit $?
|
||||
openssl dgst $dgst -binary $src || exit $?
|
||||
) >$src.dig || exit $?
|
||||
|
||||
#
|
||||
# Generate the binary signature, which will be just the integer that comprises
|
||||
# the signature with no metadata attached.
|
||||
#
|
||||
openssl rsautl -sign -inkey $key -keyform PEM -in $src.dig -out $src.sig || exit $?
|
||||
signerlen=`stat -c %s $x509.signer`
|
||||
keyidlen=`stat -c %s $x509.keyid`
|
||||
siglen=`stat -c %s $src.sig`
|
||||
|
||||
#
|
||||
# Build the signed binary
|
||||
#
|
||||
(
|
||||
cat $src || exit $?
|
||||
echo '~Module signature appended~' || exit $?
|
||||
cat $x509.signer $x509.keyid || exit $?
|
||||
|
||||
# Preface each signature integer with a 2-byte BE length
|
||||
perl -e "binmode STDOUT; print pack(\"n\", $siglen)" || exit $?
|
||||
cat $src.sig || exit $?
|
||||
|
||||
# Generate the information block
|
||||
perl -e "binmode STDOUT; print pack(\"CCCCCxxxN\", $algo, $hash, $id_type, $signerlen, $keyidlen, $siglen + 2)" || exit $?
|
||||
) >$dst~ || exit $?
|
||||
|
||||
# Permit in-place signing
|
||||
mv $dst~ $dst || exit $?
|
268
scripts/x509keyid
Executable file
268
scripts/x509keyid
Executable file
|
@ -0,0 +1,268 @@
|
|||
#!/usr/bin/perl -w
|
||||
#
|
||||
# Generate an identifier from an X.509 certificate that can be placed in a
|
||||
# module signature to indentify the key to use.
|
||||
#
|
||||
# Format:
|
||||
#
|
||||
# ./scripts/x509keyid <x509-cert> <signer's-name> <key-id>
|
||||
#
|
||||
# We read the DER-encoded X509 certificate and parse it to extract the Subject
|
||||
# name and Subject Key Identifier. The provide the data we need to build the
|
||||
# certificate identifier.
|
||||
#
|
||||
# The signer's name part of the identifier is fabricated from the commonName,
|
||||
# the organizationName or the emailAddress components of the X.509 subject
|
||||
# name and written to the second named file.
|
||||
#
|
||||
# The subject key ID to select which of that signer's certificates we're
|
||||
# intending to use to sign the module is written to the third named file.
|
||||
#
|
||||
use strict;
|
||||
|
||||
my $raw_data;
|
||||
|
||||
die "Need three filenames\n" if ($#ARGV != 2);
|
||||
|
||||
my $src = $ARGV[0];
|
||||
|
||||
open(FD, "<$src") || die $src;
|
||||
binmode FD;
|
||||
my @st = stat(FD);
|
||||
die $src if (!@st);
|
||||
read(FD, $raw_data, $st[7]) || die $src;
|
||||
close(FD);
|
||||
|
||||
my $UNIV = 0 << 6;
|
||||
my $APPL = 1 << 6;
|
||||
my $CONT = 2 << 6;
|
||||
my $PRIV = 3 << 6;
|
||||
|
||||
my $CONS = 0x20;
|
||||
|
||||
my $BOOLEAN = 0x01;
|
||||
my $INTEGER = 0x02;
|
||||
my $BIT_STRING = 0x03;
|
||||
my $OCTET_STRING = 0x04;
|
||||
my $NULL = 0x05;
|
||||
my $OBJ_ID = 0x06;
|
||||
my $UTF8String = 0x0c;
|
||||
my $SEQUENCE = 0x10;
|
||||
my $SET = 0x11;
|
||||
my $UTCTime = 0x17;
|
||||
my $GeneralizedTime = 0x18;
|
||||
|
||||
my %OIDs = (
|
||||
pack("CCC", 85, 4, 3) => "commonName",
|
||||
pack("CCC", 85, 4, 6) => "countryName",
|
||||
pack("CCC", 85, 4, 10) => "organizationName",
|
||||
pack("CCC", 85, 4, 11) => "organizationUnitName",
|
||||
pack("CCCCCCCCC", 42, 134, 72, 134, 247, 13, 1, 1, 1) => "rsaEncryption",
|
||||
pack("CCCCCCCCC", 42, 134, 72, 134, 247, 13, 1, 1, 5) => "sha1WithRSAEncryption",
|
||||
pack("CCCCCCCCC", 42, 134, 72, 134, 247, 13, 1, 9, 1) => "emailAddress",
|
||||
pack("CCC", 85, 29, 35) => "authorityKeyIdentifier",
|
||||
pack("CCC", 85, 29, 14) => "subjectKeyIdentifier",
|
||||
pack("CCC", 85, 29, 19) => "basicConstraints"
|
||||
);
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
# Extract an ASN.1 element from a string and return information about it.
|
||||
#
|
||||
###############################################################################
|
||||
sub asn1_extract($$@)
|
||||
{
|
||||
my ($cursor, $expected_tag, $optional) = @_;
|
||||
|
||||
return [ -1 ]
|
||||
if ($cursor->[1] == 0 && $optional);
|
||||
|
||||
die $src, ": ", $cursor->[0], ": ASN.1 data underrun (elem ", $cursor->[1], ")\n"
|
||||
if ($cursor->[1] < 2);
|
||||
|
||||
my ($tag, $len) = unpack("CC", substr(${$cursor->[2]}, $cursor->[0], 2));
|
||||
|
||||
if ($expected_tag != -1 && $tag != $expected_tag) {
|
||||
return [ -1 ]
|
||||
if ($optional);
|
||||
die $src, ": ", $cursor->[0], ": ASN.1 unexpected tag (", $tag,
|
||||
" not ", $expected_tag, ")\n";
|
||||
}
|
||||
|
||||
$cursor->[0] += 2;
|
||||
$cursor->[1] -= 2;
|
||||
|
||||
die $src, ": ", $cursor->[0], ": ASN.1 long tag\n"
|
||||
if (($tag & 0x1f) == 0x1f);
|
||||
die $src, ": ", $cursor->[0], ": ASN.1 indefinite length\n"
|
||||
if ($len == 0x80);
|
||||
|
||||
if ($len > 0x80) {
|
||||
my $l = $len - 0x80;
|
||||
die $src, ": ", $cursor->[0], ": ASN.1 data underrun (len len $l)\n"
|
||||
if ($cursor->[1] < $l);
|
||||
|
||||
if ($l == 0x1) {
|
||||
$len = unpack("C", substr(${$cursor->[2]}, $cursor->[0], 1));
|
||||
} elsif ($l = 0x2) {
|
||||
$len = unpack("n", substr(${$cursor->[2]}, $cursor->[0], 2));
|
||||
} elsif ($l = 0x3) {
|
||||
$len = unpack("C", substr(${$cursor->[2]}, $cursor->[0], 1)) << 16;
|
||||
$len = unpack("n", substr(${$cursor->[2]}, $cursor->[0] + 1, 2));
|
||||
} elsif ($l = 0x4) {
|
||||
$len = unpack("N", substr(${$cursor->[2]}, $cursor->[0], 4));
|
||||
} else {
|
||||
die $src, ": ", $cursor->[0], ": ASN.1 element too long (", $l, ")\n";
|
||||
}
|
||||
|
||||
$cursor->[0] += $l;
|
||||
$cursor->[1] -= $l;
|
||||
}
|
||||
|
||||
die $src, ": ", $cursor->[0], ": ASN.1 data underrun (", $len, ")\n"
|
||||
if ($cursor->[1] < $len);
|
||||
|
||||
my $ret = [ $tag, [ $cursor->[0], $len, $cursor->[2] ] ];
|
||||
$cursor->[0] += $len;
|
||||
$cursor->[1] -= $len;
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
# Retrieve the data referred to by a cursor
|
||||
#
|
||||
###############################################################################
|
||||
sub asn1_retrieve($)
|
||||
{
|
||||
my ($cursor) = @_;
|
||||
my ($offset, $len, $data) = @$cursor;
|
||||
return substr($$data, $offset, $len);
|
||||
}
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
# Roughly parse the X.509 certificate
|
||||
#
|
||||
###############################################################################
|
||||
my $cursor = [ 0, length($raw_data), \$raw_data ];
|
||||
|
||||
my $cert = asn1_extract($cursor, $UNIV | $CONS | $SEQUENCE);
|
||||
my $tbs = asn1_extract($cert->[1], $UNIV | $CONS | $SEQUENCE);
|
||||
my $version = asn1_extract($tbs->[1], $CONT | $CONS | 0, 1);
|
||||
my $serial_number = asn1_extract($tbs->[1], $UNIV | $INTEGER);
|
||||
my $sig_type = asn1_extract($tbs->[1], $UNIV | $CONS | $SEQUENCE);
|
||||
my $issuer = asn1_extract($tbs->[1], $UNIV | $CONS | $SEQUENCE);
|
||||
my $validity = asn1_extract($tbs->[1], $UNIV | $CONS | $SEQUENCE);
|
||||
my $subject = asn1_extract($tbs->[1], $UNIV | $CONS | $SEQUENCE);
|
||||
my $key = asn1_extract($tbs->[1], $UNIV | $CONS | $SEQUENCE);
|
||||
my $issuer_uid = asn1_extract($tbs->[1], $CONT | $CONS | 1, 1);
|
||||
my $subject_uid = asn1_extract($tbs->[1], $CONT | $CONS | 2, 1);
|
||||
my $extension_list = asn1_extract($tbs->[1], $CONT | $CONS | 3, 1);
|
||||
|
||||
my $subject_key_id = ();
|
||||
my $authority_key_id = ();
|
||||
|
||||
#
|
||||
# Parse the extension list
|
||||
#
|
||||
if ($extension_list->[0] != -1) {
|
||||
my $extensions = asn1_extract($extension_list->[1], $UNIV | $CONS | $SEQUENCE);
|
||||
|
||||
while ($extensions->[1]->[1] > 0) {
|
||||
my $ext = asn1_extract($extensions->[1], $UNIV | $CONS | $SEQUENCE);
|
||||
my $x_oid = asn1_extract($ext->[1], $UNIV | $OBJ_ID);
|
||||
my $x_crit = asn1_extract($ext->[1], $UNIV | $BOOLEAN, 1);
|
||||
my $x_val = asn1_extract($ext->[1], $UNIV | $OCTET_STRING);
|
||||
|
||||
my $raw_oid = asn1_retrieve($x_oid->[1]);
|
||||
next if (!exists($OIDs{$raw_oid}));
|
||||
my $x_type = $OIDs{$raw_oid};
|
||||
|
||||
my $raw_value = asn1_retrieve($x_val->[1]);
|
||||
|
||||
if ($x_type eq "subjectKeyIdentifier") {
|
||||
my $vcursor = [ 0, length($raw_value), \$raw_value ];
|
||||
|
||||
$subject_key_id = asn1_extract($vcursor, $UNIV | $OCTET_STRING);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
# Determine what we're going to use as the signer's name. In order of
|
||||
# preference, take one of: commonName, organizationName or emailAddress.
|
||||
#
|
||||
###############################################################################
|
||||
my $org = "";
|
||||
my $cn = "";
|
||||
my $email = "";
|
||||
|
||||
while ($subject->[1]->[1] > 0) {
|
||||
my $rdn = asn1_extract($subject->[1], $UNIV | $CONS | $SET);
|
||||
my $attr = asn1_extract($rdn->[1], $UNIV | $CONS | $SEQUENCE);
|
||||
my $n_oid = asn1_extract($attr->[1], $UNIV | $OBJ_ID);
|
||||
my $n_val = asn1_extract($attr->[1], -1);
|
||||
|
||||
my $raw_oid = asn1_retrieve($n_oid->[1]);
|
||||
next if (!exists($OIDs{$raw_oid}));
|
||||
my $n_type = $OIDs{$raw_oid};
|
||||
|
||||
my $raw_value = asn1_retrieve($n_val->[1]);
|
||||
|
||||
if ($n_type eq "organizationName") {
|
||||
$org = $raw_value;
|
||||
} elsif ($n_type eq "commonName") {
|
||||
$cn = $raw_value;
|
||||
} elsif ($n_type eq "emailAddress") {
|
||||
$email = $raw_value;
|
||||
}
|
||||
}
|
||||
|
||||
my $id_name = $email;
|
||||
|
||||
if ($org && $cn) {
|
||||
# Don't use the organizationName if the commonName repeats it
|
||||
if (length($org) <= length($cn) &&
|
||||
substr($cn, 0, length($org)) eq $org) {
|
||||
$id_name = $cn;
|
||||
goto got_id_name;
|
||||
}
|
||||
|
||||
# Or a signifcant chunk of it
|
||||
if (length($org) >= 7 &&
|
||||
length($cn) >= 7 &&
|
||||
substr($cn, 0, 7) eq substr($org, 0, 7)) {
|
||||
$id_name = $cn;
|
||||
goto got_id_name;
|
||||
}
|
||||
|
||||
$id_name = $org . ": " . $cn;
|
||||
} elsif ($org) {
|
||||
$id_name = $org;
|
||||
} elsif ($cn) {
|
||||
$id_name = $cn;
|
||||
}
|
||||
|
||||
got_id_name:
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
# Output the signer's name and the key identifier that we're going to include
|
||||
# in module signatures.
|
||||
#
|
||||
###############################################################################
|
||||
die $src, ": ", "X.509: Couldn't find the Subject Key Identifier extension\n"
|
||||
if (!$subject_key_id);
|
||||
|
||||
my $id_key_id = asn1_retrieve($subject_key_id->[1]);
|
||||
|
||||
open(OUTFD, ">$ARGV[1]") || die $ARGV[1];
|
||||
print OUTFD $id_name;
|
||||
close OUTFD || die $ARGV[1];
|
||||
|
||||
open(OUTFD, ">$ARGV[2]") || die $ARGV[2];
|
||||
print OUTFD $id_key_id;
|
||||
close OUTFD || die $ARGV[2];
|
Loading…
Add table
Add a link
Reference in a new issue