2018-04-04 23:44:29 +02:00
|
|
|
#!/usr/bin/env perl
|
2016-06-19 23:49:58 +02:00
|
|
|
#
|
2020-08-07 13:07:28 +02:00
|
|
|
# Copyright The Mbed TLS Contributors
|
2020-05-26 01:54:15 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2016-06-19 23:49:58 +02:00
|
|
|
# Purpose
|
|
|
|
#
|
|
|
|
# This script migrates application source code from the mbed TLS 1.3 API to the
|
|
|
|
# mbed TLS 2.0 API.
|
|
|
|
#
|
|
|
|
# The script processes the given source code and renames identifiers - functions
|
|
|
|
# types, enums etc, as
|
|
|
|
#
|
|
|
|
# Usage: rename.pl [-f datafile] [-s] [--] [filenames...]
|
|
|
|
#
|
2015-04-08 14:56:51 +02:00
|
|
|
|
2015-04-02 18:59:30 +02:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
use utf8;
|
2016-06-19 23:49:58 +02:00
|
|
|
use Path::Class;
|
2015-04-02 18:59:30 +02:00
|
|
|
use open qw(:std utf8);
|
|
|
|
|
2015-04-08 14:56:51 +02:00
|
|
|
my $usage = "Usage: $0 [-f datafile] [-s] [--] [filenames...]\n";
|
2015-04-02 18:59:30 +02:00
|
|
|
|
2015-04-10 11:19:10 +02:00
|
|
|
(my $datafile = $0) =~ s/rename.pl$/data_files\/rename-1.3-2.0.txt/;
|
2015-04-03 14:38:02 +02:00
|
|
|
my $do_strings = 0;
|
|
|
|
|
2015-04-08 14:56:51 +02:00
|
|
|
while( @ARGV && $ARGV[0] =~ /^-/ ) {
|
|
|
|
my $opt = shift;
|
|
|
|
if( $opt eq '--' ) {
|
|
|
|
last;
|
|
|
|
} elsif( $opt eq '-f' ) {
|
|
|
|
$datafile = shift;
|
|
|
|
} elsif( $opt eq '-s' ) {
|
|
|
|
$do_strings = 1; shift;
|
|
|
|
} else {
|
|
|
|
die $usage;
|
|
|
|
}
|
|
|
|
}
|
2015-04-02 18:59:30 +02:00
|
|
|
|
|
|
|
my %subst;
|
2015-04-10 11:19:10 +02:00
|
|
|
open my $nfh, '<', $datafile or die "Could not read $datafile\n";
|
|
|
|
my $ident = qr/[_A-Za-z][_A-Za-z0-9]*/;
|
|
|
|
while( my $line = <$nfh> ) {
|
|
|
|
chomp $line;
|
|
|
|
my ( $old, $new ) = ( $line =~ /^($ident)\s+($ident)$/ );
|
|
|
|
if( ! $old || ! $new ) {
|
|
|
|
die "$0: $datafile:$.: bad input '$line'\n";
|
|
|
|
}
|
2015-04-02 18:59:30 +02:00
|
|
|
$subst{$old} = $new;
|
|
|
|
}
|
2015-04-10 11:19:10 +02:00
|
|
|
close $nfh or die;
|
2015-04-02 18:59:30 +02:00
|
|
|
|
2015-04-08 20:10:16 +02:00
|
|
|
my $string = qr/"(?:\\.|[^\\"])*"/;
|
2015-04-02 18:59:30 +02:00
|
|
|
my $space = qr/\s+/;
|
|
|
|
my $idnum = qr/[a-zA-Z0-9_]+/;
|
2015-04-20 13:27:12 +02:00
|
|
|
my $symbols = qr/[-!#\$%&'()*+,.\/:;<=>?@[\\\]^_`{|}~]+|"/;
|
2015-04-02 18:59:30 +02:00
|
|
|
|
2016-06-19 23:49:58 +02:00
|
|
|
my $lib_include_dir = dir($0)->parent->parent->subdir('include', 'mbedtls');
|
|
|
|
my $lib_source_dir = dir($0)->parent->parent->subdir('library');
|
|
|
|
|
2015-04-03 14:38:02 +02:00
|
|
|
# if we replace inside strings, we don't consider them a token
|
|
|
|
my $token = $do_strings ? qr/$space|$idnum|$symbols/
|
|
|
|
: qr/$string|$space|$idnum|$symbols/;
|
|
|
|
|
2015-04-02 18:59:30 +02:00
|
|
|
my %warnings;
|
|
|
|
|
2016-06-19 23:49:58 +02:00
|
|
|
# If no files were passed, exit...
|
|
|
|
if ( not defined($ARGV[0]) ){ die $usage; }
|
|
|
|
|
2015-04-02 18:59:30 +02:00
|
|
|
while( my $filename = shift )
|
|
|
|
{
|
|
|
|
print STDERR "$filename... ";
|
2016-06-19 23:49:58 +02:00
|
|
|
|
|
|
|
if( dir($filename)->parent eq $lib_include_dir ||
|
|
|
|
dir($filename)->parent eq $lib_source_dir )
|
|
|
|
{
|
|
|
|
die "Script cannot be executed on the mbed TLS library itself.";
|
|
|
|
}
|
|
|
|
|
2015-04-03 15:21:50 +02:00
|
|
|
if( -d $filename ) { print STDERR "skip (directory)\n"; next }
|
2015-04-02 18:59:30 +02:00
|
|
|
|
|
|
|
open my $rfh, '<', $filename or die;
|
|
|
|
my @lines = <$rfh>;
|
|
|
|
close $rfh or die;
|
|
|
|
|
|
|
|
my @out;
|
|
|
|
for my $line (@lines) {
|
2015-04-03 18:37:07 +02:00
|
|
|
if( $line =~ /#include/ ) {
|
|
|
|
$line =~ s/polarssl/mbedtls/;
|
|
|
|
$line =~ s/POLARSSL/MBEDTLS/;
|
|
|
|
push( @out, $line );
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
2015-04-03 14:38:02 +02:00
|
|
|
my @words = ($line =~ /$token/g);
|
2015-04-02 18:59:30 +02:00
|
|
|
my $checkline = join '', @words;
|
|
|
|
if( $checkline eq $line ) {
|
|
|
|
my @new = map { exists $subst{$_} ? $subst{$_} : $_ } @words;
|
|
|
|
push( @out, join '', @new );
|
|
|
|
} else {
|
|
|
|
$warnings{$filename} = [] unless $warnings{$filename};
|
|
|
|
push @{ $warnings{$filename} }, $line;
|
|
|
|
push( @out, $line );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
open my $wfh, '>', $filename or die;
|
|
|
|
print $wfh $_ for @out;
|
|
|
|
close $wfh or die;
|
|
|
|
print STDERR "done\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
if( %warnings ) {
|
2015-04-08 20:10:16 +02:00
|
|
|
print "\nWarning: lines skipped due to unexpected characters:\n";
|
2015-04-02 18:59:30 +02:00
|
|
|
for my $filename (sort keys %warnings) {
|
|
|
|
print "in $filename:\n";
|
|
|
|
print for @{ $warnings{$filename} };
|
|
|
|
}
|
|
|
|
}
|