#!perl -w # # The contents of this file are subject to the Mozilla Public # License Version 1.1 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of # the License at http://www.mozilla.org/MPL/ # # Software distributed under the License is distributed on an "AS # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or # implied. See the License for the specific language governing # rights and limitations under the License. # # The Original Code is the Netscape security libraries. # # The Initial Developer of the Original Code is Netscape # Communications Corporation. Portions created by Netscape are # Copyright (C) 1994-2000 Netscape Communications Corporation. All # Rights Reserved. # # Contributor(s): # # Alternatively, the contents of this file may be used under the # terms of the GNU General Public License Version 2 or later (the # "GPL"), in which case the provisions of the GPL are applicable # instead of those above. If you wish to allow use of your # version of this file only under the terms of the GPL and not to # allow others to use your version of this file under the MPL, # indicate your decision by deleting the provisions above and # replace them with the notice and other provisions required by # the GPL. If you do not delete the provisions above, a recipient # may use your version of this file under either the MPL or the # GPL. # my $cvs_id = '@(#) $RCSfile$ $Revision$ $Date$ $Name$'; use strict; my %constants; my $count = 0; my $o; my @objects = (); my @objsize; my $cvsid; $constants{CKO_DATA} = "static const CK_OBJECT_CLASS cko_data = CKO_DATA;\n"; $constants{CK_TRUE} = "static const CK_BBOOL ck_true = CK_TRUE;\n"; $constants{CK_FALSE} = "static const CK_BBOOL ck_false = CK_FALSE;\n"; while(<>) { my @fields = (); my $size; s/^((?:[^"#]+|"[^"]*")*)(\s*#.*$)/$1/; next if (/^\s*$/); if( /(^CVS_ID\s+)(.*)/ ) { # print "The CVS ID is $2\n"; $cvsid = $2 . "\"; $cvs_id\""; my $scratch = $cvsid; $size = 1 + $scratch =~ s/[^"\n]//g; @{$objects[0][0]} = ( "CKA_CLASS", "&cko_data", "sizeof(CK_OBJECT_CLASS)" ); @{$objects[0][1]} = ( "CKA_TOKEN", "&ck_true", "sizeof(CK_BBOOL)" ); @{$objects[0][2]} = ( "CKA_PRIVATE", "&ck_false", "sizeof(CK_BBOOL)" ); @{$objects[0][3]} = ( "CKA_MODIFIABLE", "&ck_false", "sizeof(CK_BBOOL)" ); @{$objects[0][4]} = ( "CKA_LABEL", "\"CVS ID\"", "7" ); @{$objects[0][5]} = ( "CKA_APPLICATION", "\"NSS\"", "4" ); @{$objects[0][6]} = ( "CKA_VALUE", $cvsid, "$size" ); $objsize[0] = 7; next; } # This was taken from the perl faq #4. my $text = $_; push(@fields, $+) while $text =~ m{ "([^\"\\]*(?:\\.[^\"\\]*)*)"\s? # groups the phrase inside the quotes | ([^\s]+)\s? | \s }gx; push(@fields, undef) if substr($text,-1,1) eq '\s'; if( $fields[0] =~ /BEGINDATA/ ) { next; } if( $fields[1] =~ /MULTILINE/ ) { $fields[2] = ""; while(<>) { last if /END/; chomp; $fields[2] .= "\"$_\"\n"; } } if( $fields[1] =~ /UTF8/ ) { if( $fields[2] =~ /^"/ ) { ; } else { $fields[2] = "\"" . $fields[2] . "\""; } my $scratch = $fields[2]; $size = $scratch =~ s/[^"\n]//g; # should supposedly handle multilines, too.. $size += 1; # null terminate } if( $fields[1] =~ /OCTAL/ ) { if( $fields[2] =~ /^"/ ) { ; } else { $fields[2] = "\"" . $fields[2] . "\""; } my $scratch = $fields[2]; $size = $scratch =~ tr/\\//; # no null termination } if( $fields[1] =~ /^CK_/ ) { my $lcv = $fields[2]; $lcv =~ tr/A-Z/a-z/; if( !defined($constants{$fields[2]}) ) { $constants{$fields[2]} = "static const $fields[1] $lcv = $fields[2];\n"; } $size = "sizeof($fields[1])"; $fields[2] = "&$lcv"; } if( $fields[0] =~ /CKA_CLASS/ ) { $count++; $objsize[$count] = 0; } @{$objects[$count][$objsize[$count]++]} = ( "$fields[0]", $fields[2], "$size" ); # print "$fields[0] | $fields[1] | $size | $fields[2]\n"; } doprint(); sub dudump { my $i; for( $i = 0; $i <= $count; $i++ ) { print "\n"; $o = $objects[$i]; my @ob = @{$o}; my $l; my $j; for( $j = 0; $j < @ob; $j++ ) { $l = $ob[$j]; my @a = @{$l}; print "$a[0] ! $a[1] ! $a[2]\n"; } } } sub doprint { my $i; open(CFILE, ">certdata.c") || die "Can't open certdata.c: $!"; print CFILE <