From: Richard Levitte Date: Tue, 31 Mar 2020 14:42:04 +0000 (+0200) Subject: Add perl support to parse and DER encode ASN.1 OID specs X-Git-Tag: openssl-3.0.0-alpha1~156 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=77de6bb38d3bc247eac548715969b01cc2b752bb;ds=sidebyside Add perl support to parse and DER encode ASN.1 OID specs We have an old OID database that's not as readable as would be desired, and we have spots with hand coded DER for well known OIDs. The perl modules added here give enough support that we can parse OBJECT IDENTIFIER definitions and encode them as DER. OpenSSL::OID is a general OID parsing and encoding of ASN.1 definitions, and supports enough of the X.680 syntax to understand what we find in RFCs and similar documents and produce the DER encoding for them. oids_to_c is a specialized module to convert the DER encoding from OpenSSL::OID to C code. This is primarily useful in file templates that are processed with util/dofile.pl. Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/11450) --- diff --git a/providers/common/der/oids_to_c.pm b/providers/common/der/oids_to_c.pm new file mode 100644 index 0000000000..64e6c07df3 --- /dev/null +++ b/providers/common/der/oids_to_c.pm @@ -0,0 +1,111 @@ +#! /usr/bin/env perl +# Copyright 2020 The OpenSSL Project Authors. All Rights Reserved. +# +# Licensed under the Apache License 2.0 (the "License"). You may not use +# this file except in compliance with the License. You can obtain a copy +# in the file LICENSE in the source distribution or at +# https://www.openssl.org/source/license.html + +use strict; +use warnings; + +package oids_to_c; + +use Carp; +use File::Spec; +use OpenSSL::OID; + +my $OID_name_re = qr/([a-z](?:[-_A-Za-z0-9]*[A-Za-z0-9])?)/; +my $OID_value_re = qr/(\{.*?\})/s; +my $OID_def_re = qr/ + ${OID_name_re} \s+ OBJECT \s+ IDENTIFIER \s* + ::= + \s* ${OID_value_re} + /x; + +use Data::Dumper; + +sub filter_to_H { + my ($name, $comment) = @{ shift() }; + my @oid_nums = @_; + + (my $C_name = $name) =~ s|-|_|g; + my $C_bytes_size = 2 + scalar @_; + + return <<"_____"; +extern const unsigned char der_oid_${C_name}[$C_bytes_size]; +_____ +} + +sub filter_to_C { + my ($name, $comment) = @{ shift() }; + my @oid_nums = @_; + my $oid_size = scalar @oid_nums; + + croak "Unsupported OID size (>127 bytes)" if $oid_size > 127; + + (my $C_comment = $comment) =~ s|^| * |msg; + $C_comment = "\n/*\n${C_comment}\n */" if $C_comment ne ''; + (my $C_name = $name) =~ s|-|_|g; + my $C_bytes_size = 2 + $oid_size; + my $C_bytes = join(', ', map { sprintf("0x%02X", $_) } @oid_nums ); + + return <<"_____"; +$C_comment +#define DER_OID_V_${C_name} DER_P_OBJECT, $oid_size, ${C_bytes} +#define DER_OID_SZ_${C_name} ${C_bytes_size} +const unsigned char der_oid_${C_name}[DER_OID_SZ_${C_name}] = { + DER_OID_V_${C_name} +}; +_____ +} + +sub _process { + my %opts = %{ pop @_ } if ref $_[$#_] eq 'HASH'; + + # To maintain input order + my @OID_names = (); + + foreach my $file (@_) { + my $input = File::Spec->catfile($opts{dir}, $file); + open my $fh, $input or die "Reading $input: $!\n"; + + my $text = join('', + map { + s|--.*(\R)$|$1|; + $_; + } <$fh>); + # print STDERR "-----BEGIN DEBUG-----\n"; + # print STDERR $text; + # print STDERR "-----END DEBUG-----\n"; + use re 'debugcolor'; + while ($text =~ m/${OID_def_re}/sg) { + my $comment = $&; + my $name = $1; + my $value = $2; + + # print STDERR "-----BEGIN DEBUG $name-----\n"; + # print STDERR $value,"\n"; + # print STDERR "-----END DEBUG $name-----\n"; + register_oid($name, $value); + push @OID_names, [ $name, $comment ]; + } + } + + return @OID_names; +} + +sub process_leaves { + my %opts = %{ $_[$#_] } if ref $_[$#_] eq 'HASH'; + my @OID_names = _process @_; + + my $text = ''; + my %leaves = map { $_ => 1 } registered_oid_leaves; + foreach (grep { defined $leaves{$_->[0]} } @OID_names) { + my $lines = $opts{filter}->($_, encode_oid($_->[0])); + $text .= $lines; + } + return $text; +} + +1; diff --git a/util/perl/OpenSSL/OID.pm b/util/perl/OpenSSL/OID.pm new file mode 100644 index 0000000000..a4d1049c2c --- /dev/null +++ b/util/perl/OpenSSL/OID.pm @@ -0,0 +1,365 @@ +# Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. +# +# Licensed under the Apache License 2.0 (the "License"). You may not use +# this file except in compliance with the License. You can obtain a copy +# in the file LICENSE in the source distribution or at +# https://www.openssl.org/source/license.html + +# Author note: this is originally RL::ASN1::OID, +# repurposed by the author for OpenSSL use. + +package OpenSSL::OID; + +use 5.10.0; +use strict; +use warnings; +use Carp; + +use Exporter; +use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); +@ISA = qw(Exporter); +@EXPORT = qw(parse_oid encode_oid register_oid + registered_oid_arcs registered_oid_leaves); +@EXPORT_OK = qw(encode_oid_nums); + +use List::Util; + +=head1 NAME + +OpenSSL::OID - an OBJECT IDENTIFIER parser / encoder + +=head1 VERSION + +Version 0.1 + +=cut + +our $VERSION = '0.1'; + + +=head1 SYNOPSIS + + use OpenSSL::OID; + + # This gives the array ( 1 2 840 113549 1 1 ) + my @nums = parse_oid('{ pkcs-1 1 }'); + + # This gives the array of DER encoded bytes for the OID, i.e. + # ( 42, 134, 72, 134, 247, 13, 1, 1 ) + my @bytes = encode_oid('{ pkcs-1 1 }'); + + # This registers a name with an OID. It's saved internally and + # serves as repository of names for further parsing, such as 'pkcs-1' + # in the strings used above. + register_object('pkcs-1', '{ pkcs 1 }'); + + + use OpenSSL::OID qw(:DEFAULT encode_oid_nums); + + # This does the same as encode_oid(), but takes the output of + # parse_oid() as input. + my @bytes = encode_oid_nums(@nums); + +=head1 EXPORT + +The functions parse_oid and encode_oid are exported by default. +The function encode_oid_nums() can be exported explicitly. + +=cut + +######## REGEXPS + +# ASN.1 object identifiers come in two forms: 1) the bracketed form +#(referred to as ObjectIdentifierValue in X.690), 2) the dotted form +#(referred to as XMLObjIdentifierValue in X.690) +# +# examples of 1 (these are all the OID for rsaEncrypted): +# +# { iso (1) 2 840 11349 1 1 } +# { pkcs 1 1 } +# { pkcs1 1 } +# +# examples of 2: +# +# 1.2.840.113549.1.1 +# pkcs.1.1 +# pkcs1.1 +# +my $identifier_re = qr/[a-z](?:[-_A-Za-z0-9]*[A-Za-z0-9])?/; +# The only difference between $objcomponent_re and $xmlobjcomponent_re is +# the separator in the top branch. Each component is always parsed in two +# groups, so we get a pair of values regardless. That's the reason for the +# empty parentheses. +# Because perl doesn't try to do an exhaustive try of every branch it rather +# stops on the first that matches, we need to have them in order of longest +# to shortest where there may be ambiguity. +my $objcomponent_re = qr/(?| + (${identifier_re}) \s* \((\d+)\) + | + (${identifier_re}) () + | + ()(\d+) + )/x; +my $xmlobjcomponent_re = qr/(?| + (${identifier_re}) \. \((\d+)\) + | + (${identifier_re}) () + | + () (\d+) + )/x; + +my $obj_re = + qr/(?: \{ \s* (?: ${objcomponent_re} \s+ )* ${objcomponent_re} \s* \} )/x; +my $xmlobj_re = + qr/(?: (?: ${xmlobjcomponent_re} \. )* ${xmlobjcomponent_re} )/x; + +######## NAME TO OID REPOSITORY + +# Recorded OIDs, to support things like '{ pkcs1 1 }' +# Do note that we don't currently support relative OIDs +# +# The key is the identifier. +# +# The value is a hash, composed of: +# type => 'arc' | 'leaf' +# nums => [ LIST ] +# Note that the |type| always starts as a 'leaf', and may change to an 'arc' +# on the fly, as new OIDs are parsed. +my %name2oid = (); + +######## + +=head1 SUBROUTINES/METHODS + +=over 4 + +=item parse_oid() + +TBA + +=cut + +sub parse_oid { + my $input = shift; + + croak "Invalid extra arguments" if (@_); + + # The components become a list of ( identifier, number ) pairs, + # where they can also be the empty string if they are not present + # in the input. + my @components; + if ($input =~ m/^\s*(${obj_re})\s*$/x) { + my $oid = $1; + @components = ( $oid =~ m/${objcomponent_re}\s*/g ); + } elsif ($input =~ m/^\s*(${xmlobj_re})\s*$/) { + my $oid = $1; + @components = ( $oid =~ m/${xmlobjcomponent_re}\.?/g ); + } + + croak "Invalid ASN.1 object '$input'" unless @components; + die "Internal error when parsing '$input'" + unless scalar(@components) % 2 == 0; + + # As we currently only support a name without number as first + # component, the easiest is to have a direct look at it and + # hack it. + my @first = List::Util::pairmap { + return $b if $b ne ''; + return @{$name2oid{$a}->{nums}} if $a ne '' && defined $name2oid{$a}; + croak "Undefined identifier $a" if $a ne ''; + croak "Empty OID element (how's that possible?)"; + } ( @components[0..1] ); + + my @numbers = + ( + @first, + List::Util::pairmap { + return $b if $b ne ''; + croak "Unsupported relative OID $a" if $a ne ''; + croak "Empty OID element (how's that possible?)"; + } @components[2..$#components] + ); + + # If the first component has an identifier and there are other + # components following it, we change the type of that identifier + # to 'arc'. + if (scalar @components > 2 + && $components[0] ne '' + && defined $name2oid{$components[0]}) { + $name2oid{$components[0]}->{type} = 'arc'; + } + + return @numbers; +} + +=item encode_oid() + +=cut + +# Forward declaration +sub encode_oid_nums; +sub encode_oid { + return encode_oid_nums parse_oid @_; +} + +=item register_oid() + +=cut + +sub register_oid { + my $name = shift; + my @nums = parse_oid @_; + + if (defined $name2oid{$name}) { + my $str1 = join(',', @nums); + my $str2 = join(',', @{$name2oid{$name}->{nums}}); + + croak "Invalid redefinition of $name with different value" + unless $str1 eq $str2; + } else { + $name2oid{$name} = { type => 'leaf', nums => [ @nums ] }; + } +} + +=item registered_oid_arcs() + +=item registered_oid_leaves() + +=cut + +sub _registered_oids { + my $type = shift; + + return grep { $name2oid{$_}->{type} eq $type } keys %name2oid; +} + +sub registered_oid_arcs { + return _registered_oids( 'arc' ); +} + +sub registered_oid_leaves { + return _registered_oids( 'leaf' ); +} + +=item encode_oid_nums() + +=cut + +# Internal helper. It takes a numeric OID component and generates the +# DER encoding for it. +sub _gen_oid_bytes { + my $num = shift; + my $cnt = 0; + + return ( $num ) if $num < 128; + return ( ( map { $_ | 0x80 } _gen_oid_bytes($num >> 7) ), $num & 0x7f ); +} + +sub encode_oid_nums { + my @numbers = @_; + + croak 'Invalid OID values: ( ', join(', ', @numbers), ' )' + if (scalar @numbers < 2 + || $numbers[0] < 0 || $numbers[0] > 2 + || $numbers[1] < 0 || $numbers[1] > 39); + + my $first = shift(@numbers) * 40 + shift(@numbers); + @numbers = ( $first, map { _gen_oid_bytes($_) } @numbers ); + + return @numbers; +} + +=back + +=head1 AUTHOR + +Richard levitte, C<< >> + +=cut + +######## UNIT TESTING + +use Test::More; + +sub TEST { + # Order is important, so we make it a pairwise list + my @predefined = + ( + 'pkcs' => '1.2.840.113549', + 'pkcs-1' => 'pkcs.1', + ); + + my %good_cases = + ( + ' 1.2.840.113549.1.1 ' => [ 42, 134, 72, 134, 247, 13, 1, 1 ], + 'pkcs.1.1' => [ 42, 134, 72, 134, 247, 13, 1, 1 ], + 'pkcs-1.1' => [ 42, 134, 72, 134, 247, 13, 1, 1 ], + ' { iso (1) 2 840 113549 1 1 } ' => [ 42, 134, 72, 134, 247, 13, 1, 1 ], + '{ pkcs 1 1 } ' => [ 42, 134, 72, 134, 247, 13, 1, 1 ], + '{pkcs-1 1 }' => [ 42, 134, 72, 134, 247, 13, 1, 1 ], + ); + my @bad_cases = + ( + ' { 1.2.840.113549.1.1 } ', + ); + + plan tests => + scalar ( @predefined ) / 2 + + scalar ( keys %good_cases ) + + scalar @bad_cases; + + note 'Predefine a few names OIDs'; + foreach my $pair ( List::Util::pairs @predefined ) { + ok( defined eval { register_oid(@$pair) }, + "Registering $pair->[0] => $pair->[1]" ); + } + + note 'Good cases'; + foreach ( keys %good_cases ) { + subtest "Checking '$_'" => sub { + my $oid = shift; + + plan tests => 5; + + my (@l, @e); + + ok( scalar (@l = eval { parse_oid $oid }) > 0, + "Parsing" ); + diag $@ unless @l; + ok( scalar (@e = eval { encode_oid_nums @l }) > 0, + "Encoding via encode_oid_nums()" ); + diag $@ unless @e; + is_deeply(\@e, $good_cases{$oid}, "Checking encoding"); + note "'$oid' => ", join(', ', @e) if @e; + + ok( scalar (@e = eval { encode_oid $oid }) > 0, + "Encoding directly" ); + diag $@ unless @e; + is_deeply(\@e, $good_cases{$oid}, "Checking encoding"); + note "'$oid' => ", join(', ', @e) if @e; + }, + $_; + } + + note 'Bad cases'; + foreach ( @bad_cases ) { + subtest "Checking '$_'" => sub { + my $oid = shift; + + plan tests => 2; + + my (@l, @e); + + ok( scalar (@l = eval { parse_oid $oid }) == 0, + "Parsing '$oid'" ); + note $@ unless @l; + ok( scalar (@e = eval { encode_oid_nums @l }) == 0, + "Encoding '$oid'" ); + note $@ unless @e; + note "'$oid' => ", join(', ', @e) if @e; + }, + $_; + } +} + +1; # End of OpenSSL::OID