summaryrefslogtreecommitdiffstats
path: root/util/perl
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-09-03 17:09:18 +0100
committerMatt Caswell <matt@openssl.org>2020-09-13 11:11:32 +0100
commit262cda1cdac3d5c8f2fdb3c30b6d1c1a982864d6 (patch)
treea1ad4554f964534159f6387ea1fd7be8680d071b /util/perl
parent9cedfc90cebc905b20275d534699a1070bba65a4 (diff)
Remove some safestack things that are no longer needed
... and add SKM_DEFINE_STACK_OF_INTERNAL Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12781)
Diffstat (limited to 'util/perl')
-rw-r--r--util/perl/OpenSSL/ParseC.pm37
1 files changed, 15 insertions, 22 deletions
diff --git a/util/perl/OpenSSL/ParseC.pm b/util/perl/OpenSSL/ParseC.pm
index dd1da99f58..c5be9b8c2a 100644
--- a/util/perl/OpenSSL/ParseC.pm
+++ b/util/perl/OpenSSL/ParseC.pm
@@ -360,6 +360,21 @@ static ossl_inline sk_$1_compfunc sk_$1_set_cmp_func(STACK_OF($1) *sk,
EOF
}
},
+ { regexp => qr/SKM_DEFINE_STACK_OF_INTERNAL<<<\((.*),\s*(.*),\s*(.*)\)>>>/,
+ massager => sub {
+ return (<<"EOF");
+STACK_OF($1);
+typedef int (*sk_$1_compfunc)(const $3 * const *a, const $3 *const *b);
+typedef void (*sk_$1_freefunc)($3 *a);
+typedef $3 * (*sk_$1_copyfunc)(const $3 *a);
+static ossl_unused ossl_inline $2 *ossl_check_$1_type($2 *ptr);
+static ossl_unused ossl_inline const OPENSSL_STACK *ossl_check_const_$1_sk_type(const STACK_OF($1) *sk);
+static ossl_unused ossl_inline OPENSSL_sk_compfunc ossl_check_$1_compfunc_type(sk_$1_compfunc cmp);
+static ossl_unused ossl_inline OPENSSL_sk_copyfunc ossl_check_$1_copyfunc_type(sk_$1_copyfunc cpy);
+static ossl_unused ossl_inline OPENSSL_sk_freefunc ossl_check_$1_freefunc_type(sk_$1_freefunc fr);
+EOF
+ }
+ },
{ regexp => qr/DEFINE_SPECIAL_STACK_OF<<<\((.*),\s*(.*)\)>>>/,
massager => sub { return ("SKM_DEFINE_STACK_OF($1,$2,$2)"); },
},
@@ -372,28 +387,6 @@ EOF
{ regexp => qr/DEFINE_STACK_OF_CONST<<<\((.*)\)>>>/,
massager => sub { return ("SKM_DEFINE_STACK_OF($1,const $1,$1)"); },
},
- { regexp => qr/DEFINE_STACK_OF_STRING<<<\((.*?)\)>>>/,
- massager => sub {
- return ("DEFINE_SPECIAL_STACK_OF(OPENSSL_STRING, char)");
- }
- },
- { regexp => qr/DEFINE_STACK_OF_CSTRING<<<\((.*?)\)>>>/,
- massager => sub {
- return ("DEFINE_SPECIAL_STACK_OF_CONST(OPENSSL_CSTRING, char)");
- }
- },
- # DEFINE_OR_DECLARE macro calls must be interpretted as DEFINE macro
- # calls, because that's what they look like to the external apps.
- # (if that ever changes, we must change the substitutions to STACK_OF)
- { regexp => qr/DEFINE_OR_DECLARE_STACK_OF<<<\((.*?)\)>>>/,
- massager => sub { return ("DEFINE_STACK_OF($1)"); }
- },
- { regexp => qr/DEFINE_OR_DECLARE_STACK_OF_STRING<<<\(\)>>>/,
- massager => sub { return ("DEFINE_STACK_OF_STRING()"); },
- },
- { regexp => qr/DEFINE_OR_DECLARE_STACK_OF_CSTRING<<<\(\)>>>/,
- massager => sub { return ("DEFINE_STACK_OF_CSTRING()"); },
- },
#####
# ASN1 stuff