1 | #! /usr/bin/env perl
|
---|
2 | # Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
|
---|
3 | #
|
---|
4 | # Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
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 |
|
---|
9 | use OpenSSL::Test qw/:DEFAULT srctop_dir bldtop_dir/;
|
---|
10 | use OpenSSL::Test::Utils;
|
---|
11 |
|
---|
12 | #Load configdata.pm
|
---|
13 |
|
---|
14 | BEGIN {
|
---|
15 | setup("test_shlibload");
|
---|
16 | }
|
---|
17 | use lib srctop_dir('Configurations');
|
---|
18 | use lib bldtop_dir('.');
|
---|
19 | use platform;
|
---|
20 |
|
---|
21 | plan skip_all => "Test only supported in a shared build" if disabled("shared");
|
---|
22 | plan skip_all => "Test is disabled on AIX" if config('target') =~ m|^aix|;
|
---|
23 | plan skip_all => "Test is disabled on NonStop" if config('target') =~ m|^nonstop|;
|
---|
24 | plan skip_all => "Test only supported in a dso build" if disabled("dso");
|
---|
25 | plan skip_all => "Test is disabled in an address sanitizer build" unless disabled("asan");
|
---|
26 |
|
---|
27 | plan tests => 10;
|
---|
28 |
|
---|
29 | my $libcrypto = platform->sharedlib('libcrypto');
|
---|
30 | my $libssl = platform->sharedlib('libssl');
|
---|
31 | my $atexit_outfile;
|
---|
32 |
|
---|
33 | $atexit_outfile = 'atexit-cryptofirst.txt';
|
---|
34 | 1 while unlink $atexit_outfile;
|
---|
35 | ok(run(test(["shlibloadtest", "-crypto_first", $libcrypto, $libssl, $atexit_outfile])),
|
---|
36 | "running shlibloadtest -crypto_first $atexit_outfile");
|
---|
37 | ok(check_atexit($atexit_outfile));
|
---|
38 |
|
---|
39 | $atexit_outfile = 'atexit-sslfirst.txt';
|
---|
40 | 1 while unlink $atexit_outfile;
|
---|
41 | ok(run(test(["shlibloadtest", "-ssl_first", $libcrypto, $libssl, $atexit_outfile])),
|
---|
42 | "running shlibloadtest -ssl_first $atexit_outfile");
|
---|
43 | ok(check_atexit($atexit_outfile));
|
---|
44 |
|
---|
45 | $atexit_outfile = 'atexit-justcrypto.txt';
|
---|
46 | 1 while unlink $atexit_outfile;
|
---|
47 | ok(run(test(["shlibloadtest", "-just_crypto", $libcrypto, $libssl, $atexit_outfile])),
|
---|
48 | "running shlibloadtest -just_crypto $atexit_outfile");
|
---|
49 | ok(check_atexit($atexit_outfile));
|
---|
50 |
|
---|
51 | $atexit_outfile = 'atexit-dsoref.txt';
|
---|
52 | 1 while unlink $atexit_outfile;
|
---|
53 | ok(run(test(["shlibloadtest", "-dso_ref", $libcrypto, $libssl, $atexit_outfile])),
|
---|
54 | "running shlibloadtest -dso_ref $atexit_outfile");
|
---|
55 | ok(check_atexit($atexit_outfile));
|
---|
56 |
|
---|
57 | $atexit_outfile = 'atexit-noatexit.txt';
|
---|
58 | 1 while unlink $atexit_outfile;
|
---|
59 | ok(run(test(["shlibloadtest", "-no_atexit", $libcrypto, $libssl, $atexit_outfile])),
|
---|
60 | "running shlibloadtest -no_atexit $atexit_outfile");
|
---|
61 | ok(!check_atexit($atexit_outfile));
|
---|
62 |
|
---|
63 | sub check_atexit {
|
---|
64 | my $filename = shift;
|
---|
65 |
|
---|
66 | open my $fh, '<', $filename;
|
---|
67 | return 0 unless defined $fh;
|
---|
68 |
|
---|
69 | my $data = <$fh>;
|
---|
70 |
|
---|
71 | return 1 if (defined $data && $data =~ m/atexit\(\) run/);
|
---|
72 |
|
---|
73 | return 0;
|
---|
74 | }
|
---|