blob: a3844e505c2b700b3d0e6a3ca1033975ed6d371f [file] [log] [blame]
Rich Salze0a65192016-04-19 22:10:43 -04001#! /usr/bin/env perl
2# Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
3#
Richard Levitte402dd552018-12-06 14:08:43 +01004# Licensed under the Apache License 2.0 (the "License"). You may not use
Rich Salze0a65192016-04-19 22:10:43 -04005# 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
Richard Levitte2faa9302004-05-13 21:38:26 +00009
10use strict;
11use warnings;
12
13my @directory_vars = ( "dir", "certs", "crl_dir", "new_certs_dir" );
14my @file_vars = ( "database", "certificate", "serial", "crlnumber",
15 "crl", "private_key", "RANDFILE" );
16while(<STDIN>) {
Richard Levitte9ba96fb2016-02-11 21:47:30 +010017 s|\R$||;
Richard Levitte2faa9302004-05-13 21:38:26 +000018 foreach my $d (@directory_vars) {
19 if (/^(\s*\#?\s*${d}\s*=\s*)\.\/([^\s\#]*)([\s\#].*)$/) {
20 $_ = "$1sys\\\$disk:\[.$2$3";
21 } elsif (/^(\s*\#?\s*${d}\s*=\s*)(\w[^\s\#]*)([\s\#].*)$/) {
22 $_ = "$1sys\\\$disk:\[.$2$3";
23 }
24 s/^(\s*\#?\s*${d}\s*=\s*\$\w+)\/([^\s\#]*)([\s\#].*)$/$1.$2\]$3/;
25 while(/^(\s*\#?\s*${d}\s*=\s*(\$\w+\.|sys\\\$disk:\[\.)[\w\.]+)\/([^\]]*)\](.*)$/) {
26 $_ = "$1.$3]$4";
27 }
28 }
29 foreach my $f (@file_vars) {
30 s/^(\s*\#?\s*${f}\s*=\s*)\.\/(.*)$/$1sys\\\$disk:\[\/$2/;
31 while(/^(\s*\#?\s*${f}\s*=\s*(\$\w+|sys\\\$disk:\[)[^\/]*)\/(\w+\/[^\s\#]*)([\s\#].*)$/) {
32 $_ = "$1.$3$4";
33 }
34 if (/^(\s*\#?\s*${f}\s*=\s*(\$\w+|sys\\\$disk:\[)[^\/]*)\/(\w+)([\s\#].*)$/) {
35 $_ = "$1]$3.$4";
36 } elsif (/^(\s*\#?\s*${f}\s*=\s*(\$\w+|sys\\\$disk:\[)[^\/]*)\/([^\s\#]*)([\s\#].*)$/) {
37 $_ = "$1]$3$4";
38 }
39 }
40 print $_,"\n";
41}