]> git.ipfire.org Git - thirdparty/openssl.git/blame - util/dofile.pl
Document most missing options
[thirdparty/openssl.git] / util / dofile.pl
CommitLineData
e0a65194 1#! /usr/bin/env perl
b0edda11 2# Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
291e94df 3#
9059ab42 4# Licensed under the Apache License 2.0 (the "License"). You may not use
e0a65194
RS
5# this file except in compliance with the License. You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
8
291e94df
RL
9# Reads one or more template files and runs it through Text::Template
10#
11# It is assumed that this scripts is called with -Mconfigdata, a module
12# that holds configuration data in %config
13
14use strict;
15use warnings;
632b3092 16
1935a586
RL
17use FindBin;
18use lib "$FindBin::Bin/perl";
486f1491
RL
19use OpenSSL::fallback "$FindBin::Bin/../external/perl/MODULES.txt";
20use Getopt::Std;
21use OpenSSL::Template;
9ab6fc59 22
9fcb9702
RS
23# We expect to get a lot of information from configdata, so check that
24# it was part of our commandline.
486f1491
RL
25die "You must run this script with -Mconfigdata\n"
26 if !exists($config{target});
291e94df 27
9ab6fc59
RL
28# Check options ######################################################
29
9ab6fc59
RL
30# -o ORIGINATOR
31# declares ORIGINATOR as the originating script.
9fcb9702
RS
32# -i .ext Like Perl's edit-in-place -i flag
33my %opts = ();
34getopt('oi', \%opts);
9ab6fc59 35
9fcb9702
RS
36my @autowarntext = (
37 "WARNING: do not edit!",
38 "Generated"
39 . (defined($opts{o}) ? " by $opts{o}" : "")
40 . (scalar(@ARGV) > 0 ? " from " .join(", ", @ARGV) : "")
41);
42
d4bff20d
RS
43if (defined($opts{s})) {
44 local $/ = undef;
45 open VARS, $opts{s} or die "Couldn't open $opts{s}, $!";
46 my $contents = <VARS>;
47 close VARS;
48 eval $contents;
49 die $@ if $@;
50}
9fcb9702
RS
51die "Must have input files"
52 if defined($opts{i}) and scalar(@ARGV) == 0;
9ab6fc59 53
486f1491 54# Template setup #####################################################
291e94df 55
486f1491 56my @template_settings =
291e94df 57 @ARGV
486f1491
RL
58 ? map { { TYPE => 'FILE', SOURCE => $_, FILENAME => $_ } } @ARGV
59 : ( { TYPE => 'FILEHANDLE', SOURCE => \*STDIN, FILENAME => '<stdin>' } );
291e94df 60
9fcb9702
RS
61# Error callback; print message, set status, return "stop processing"
62my $failed = 0;
63sub errorcallback {
64 my %args = @_;
65 print STDERR $args{error};
66 $failed++;
67 return undef;
68}
69
291e94df
RL
70# Engage! ############################################################
71
486f1491 72my $prepend = <<"_____";
d7e4932e 73use File::Spec::Functions;
486f1491 74use lib "$FindBin::Bin/../Configurations";
d7e4932e
RL
75use lib '$config{builddir}';
76use platform;
486f1491
RL
77_____
78
79foreach (@template_settings) {
80 my $template = OpenSSL::Template->new(%$_);
9fcb9702
RS
81 die "Couldn't create template: $Text::Template::ERROR"
82 if !defined($template);
83
84 my $result = $template->fill_in(%$_,
486f1491
RL
85 HASH => { config => \%config,
86 target => \%target,
87 disabled => \%disabled,
88 withargs => \%withargs,
89 unified_info => \%unified_info,
90 autowarntext => \@autowarntext },
9fcb9702 91 BROKEN => \&errorcallback,
486f1491
RL
92 PREPEND => $prepend,
93 # To ensure that global variables and functions
94 # defined in one template stick around for the
95 # next, making them combinable
96 PACKAGE => 'OpenSSL::safe');
9fcb9702
RS
97 exit 1 if $failed;
98
99 if (defined($opts{i})) {
100 my $in = $_->{FILENAME};
101 my $out = $in;
102 $out =~ s/$opts{i}$//;
103 die "Cannot replace file in-place $in"
104 if $in eq $out;
105 open OFH, ">$out"
106 or die "Can't open $out, $!";
107 print OFH $result;
108 close OFH;
109 } else {
110 print $result;
111 }
deb02194 112}