diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/util/mkstack.pl | 171 |
1 files changed, 0 insertions, 171 deletions
diff --git a/src/lib/libcrypto/util/mkstack.pl b/src/lib/libcrypto/util/mkstack.pl deleted file mode 100644 index 79f8df7e24..0000000000 --- a/src/lib/libcrypto/util/mkstack.pl +++ /dev/null | |||
@@ -1,171 +0,0 @@ | |||
1 | #!/usr/local/bin/perl -w | ||
2 | |||
3 | # This is a utility that searches out "DECLARE_STACK_OF()" | ||
4 | # declarations in .h and .c files, and updates/creates/replaces | ||
5 | # the corresponding macro declarations in crypto/stack/safestack.h. | ||
6 | # As it's not generally possible to have macros that generate macros, | ||
7 | # we need to control this from the "outside", here in this script. | ||
8 | # | ||
9 | # Geoff Thorpe, June, 2000 (with massive Perl-hacking | ||
10 | # help from Steve Robb) | ||
11 | |||
12 | my $safestack = "crypto/stack/safestack"; | ||
13 | |||
14 | my $do_write; | ||
15 | while (@ARGV) { | ||
16 | my $arg = $ARGV[0]; | ||
17 | if($arg eq "-write") { | ||
18 | $do_write = 1; | ||
19 | } | ||
20 | shift @ARGV; | ||
21 | } | ||
22 | |||
23 | |||
24 | @source = (<crypto/*.[ch]>, <crypto/*/*.[ch]>, <ssl/*.[ch]>, <apps/*.[ch]>); | ||
25 | foreach $file (@source) { | ||
26 | next if -l $file; | ||
27 | |||
28 | # Open the .c/.h file for reading | ||
29 | open(IN, "< $file") || die "Can't open $file for reading: $!"; | ||
30 | |||
31 | while(<IN>) { | ||
32 | if (/^DECLARE_STACK_OF\(([^)]+)\)/) { | ||
33 | push @stacklst, $1; | ||
34 | } | ||
35 | if (/^DECLARE_SPECIAL_STACK_OF\(([^,\s]+)\s*,\s*([^>\s]+)\)/) { | ||
36 | push @sstacklst, [$1, $2]; | ||
37 | } | ||
38 | if (/^DECLARE_ASN1_SET_OF\(([^)]+)\)/) { | ||
39 | push @asn1setlst, $1; | ||
40 | } | ||
41 | if (/^DECLARE_PKCS12_STACK_OF\(([^)]+)\)/) { | ||
42 | push @p12stklst, $1; | ||
43 | } | ||
44 | if (/^DECLARE_LHASH_OF\(([^)]+)\)/) { | ||
45 | push @lhashlst, $1; | ||
46 | } | ||
47 | } | ||
48 | close(IN); | ||
49 | } | ||
50 | |||
51 | |||
52 | |||
53 | my $old_stackfile = ""; | ||
54 | my $new_stackfile = ""; | ||
55 | my $inside_block = 0; | ||
56 | my $type_thing; | ||
57 | |||
58 | open(IN, "< $safestack.h") || die "Can't open input file: $!"; | ||
59 | while(<IN>) { | ||
60 | $old_stackfile .= $_; | ||
61 | |||
62 | if (m|^/\* This block of defines is updated by util/mkstack.pl, please do not touch! \*/|) { | ||
63 | $inside_block = 1; | ||
64 | } | ||
65 | if (m|^/\* End of util/mkstack.pl block, you may now edit :-\) \*/|) { | ||
66 | $inside_block = 0; | ||
67 | } elsif ($inside_block == 0) { | ||
68 | $new_stackfile .= $_; | ||
69 | } | ||
70 | next if($inside_block != 1); | ||
71 | $new_stackfile .= "/* This block of defines is updated by util/mkstack.pl, please do not touch! */"; | ||
72 | |||
73 | foreach $type_thing (sort @stacklst) { | ||
74 | $new_stackfile .= <<EOF; | ||
75 | |||
76 | #define sk_${type_thing}_new(cmp) SKM_sk_new($type_thing, (cmp)) | ||
77 | #define sk_${type_thing}_new_null() SKM_sk_new_null($type_thing) | ||
78 | #define sk_${type_thing}_free(st) SKM_sk_free($type_thing, (st)) | ||
79 | #define sk_${type_thing}_num(st) SKM_sk_num($type_thing, (st)) | ||
80 | #define sk_${type_thing}_value(st, i) SKM_sk_value($type_thing, (st), (i)) | ||
81 | #define sk_${type_thing}_set(st, i, val) SKM_sk_set($type_thing, (st), (i), (val)) | ||
82 | #define sk_${type_thing}_zero(st) SKM_sk_zero($type_thing, (st)) | ||
83 | #define sk_${type_thing}_push(st, val) SKM_sk_push($type_thing, (st), (val)) | ||
84 | #define sk_${type_thing}_unshift(st, val) SKM_sk_unshift($type_thing, (st), (val)) | ||
85 | #define sk_${type_thing}_find(st, val) SKM_sk_find($type_thing, (st), (val)) | ||
86 | #define sk_${type_thing}_delete(st, i) SKM_sk_delete($type_thing, (st), (i)) | ||
87 | #define sk_${type_thing}_delete_ptr(st, ptr) SKM_sk_delete_ptr($type_thing, (st), (ptr)) | ||
88 | #define sk_${type_thing}_insert(st, val, i) SKM_sk_insert($type_thing, (st), (val), (i)) | ||
89 | #define sk_${type_thing}_set_cmp_func(st, cmp) SKM_sk_set_cmp_func($type_thing, (st), (cmp)) | ||
90 | #define sk_${type_thing}_dup(st) SKM_sk_dup($type_thing, st) | ||
91 | #define sk_${type_thing}_pop_free(st, free_func) SKM_sk_pop_free($type_thing, (st), (free_func)) | ||
92 | #define sk_${type_thing}_shift(st) SKM_sk_shift($type_thing, (st)) | ||
93 | #define sk_${type_thing}_pop(st) SKM_sk_pop($type_thing, (st)) | ||
94 | #define sk_${type_thing}_sort(st) SKM_sk_sort($type_thing, (st)) | ||
95 | #define sk_${type_thing}_is_sorted(st) SKM_sk_is_sorted($type_thing, (st)) | ||
96 | EOF | ||
97 | } | ||
98 | |||
99 | foreach $type_thing (sort @sstacklst) { | ||
100 | my $t1 = $type_thing->[0]; | ||
101 | my $t2 = $type_thing->[1]; | ||
102 | $new_stackfile .= <<EOF; | ||
103 | |||
104 | #define sk_${t1}_new(cmp) ((STACK_OF($t1) *)sk_new(CHECKED_SK_CMP_FUNC($t2, cmp))) | ||
105 | #define sk_${t1}_new_null() ((STACK_OF($t1) *)sk_new_null()) | ||
106 | #define sk_${t1}_push(st, val) sk_push(CHECKED_STACK_OF($t1, st), CHECKED_PTR_OF($t2, val)) | ||
107 | #define sk_${t1}_find(st, val) sk_find(CHECKED_STACK_OF($t1, st), CHECKED_PTR_OF($t2, val)) | ||
108 | #define sk_${t1}_value(st, i) (($t1)sk_value(CHECKED_STACK_OF($t1, st), i)) | ||
109 | #define sk_${t1}_num(st) SKM_sk_num($t1, st) | ||
110 | #define sk_${t1}_pop_free(st, free_func) sk_pop_free(CHECKED_STACK_OF($t1, st), CHECKED_SK_FREE_FUNC2($t1, free_func)) | ||
111 | #define sk_${t1}_insert(st, val, i) sk_insert(CHECKED_STACK_OF($t1, st), CHECKED_PTR_OF($t2, val), i) | ||
112 | #define sk_${t1}_free(st) SKM_sk_free(${t1}, st) | ||
113 | #define sk_${t1}_set(st, i, val) sk_set(CHECKED_STACK_OF($t1, st), i, CHECKED_PTR_OF($t2, val)) | ||
114 | #define sk_${t1}_zero(st) SKM_sk_zero($t1, (st)) | ||
115 | #define sk_${t1}_unshift(st, val) sk_unshift(CHECKED_STACK_OF($t1, st), CHECKED_PTR_OF($t2, val)) | ||
116 | #define sk_${t1}_delete(st, i) SKM_sk_delete($t1, (st), (i)) | ||
117 | #define sk_${t1}_delete_ptr(st, ptr) ($t1 *)sk_delete_ptr(CHECKED_STACK_OF($t1, st), CHECKED_PTR_OF($t2, ptr)) | ||
118 | #define sk_${t1}_set_cmp_func(st, cmp) \\ | ||
119 | ((int (*)(const $t2 * const *,const $t2 * const *)) \\ | ||
120 | sk_set_cmp_func(CHECKED_STACK_OF($t1, st), CHECKED_SK_CMP_FUNC($t2, cmp))) | ||
121 | #define sk_${t1}_dup(st) SKM_sk_dup($t1, st) | ||
122 | #define sk_${t1}_shift(st) SKM_sk_shift($t1, (st)) | ||
123 | #define sk_${t1}_pop(st) ($t2 *)sk_pop(CHECKED_STACK_OF($t1, st)) | ||
124 | #define sk_${t1}_sort(st) SKM_sk_sort($t1, (st)) | ||
125 | #define sk_${t1}_is_sorted(st) SKM_sk_is_sorted($t1, (st)) | ||
126 | |||
127 | EOF | ||
128 | } | ||
129 | |||
130 | foreach $type_thing (sort @p12stklst) { | ||
131 | $new_stackfile .= <<EOF; | ||
132 | |||
133 | #define PKCS12_decrypt_d2i_${type_thing}(algor, d2i_func, free_func, pass, passlen, oct, seq) \\ | ||
134 | SKM_PKCS12_decrypt_d2i($type_thing, (algor), (d2i_func), (free_func), (pass), (passlen), (oct), (seq)) | ||
135 | EOF | ||
136 | } | ||
137 | |||
138 | foreach $type_thing (sort @lhashlst) { | ||
139 | my $lc_tt = lc $type_thing; | ||
140 | $new_stackfile .= <<EOF; | ||
141 | |||
142 | #define lh_${type_thing}_new() LHM_lh_new(${type_thing},${lc_tt}) | ||
143 | #define lh_${type_thing}_insert(lh,inst) LHM_lh_insert(${type_thing},lh,inst) | ||
144 | #define lh_${type_thing}_retrieve(lh,inst) LHM_lh_retrieve(${type_thing},lh,inst) | ||
145 | #define lh_${type_thing}_delete(lh,inst) LHM_lh_delete(${type_thing},lh,inst) | ||
146 | #define lh_${type_thing}_doall(lh,fn) LHM_lh_doall(${type_thing},lh,fn) | ||
147 | #define lh_${type_thing}_doall_arg(lh,fn,arg_type,arg) \\ | ||
148 | LHM_lh_doall_arg(${type_thing},lh,fn,arg_type,arg) | ||
149 | #define lh_${type_thing}_error(lh) LHM_lh_error(${type_thing},lh) | ||
150 | #define lh_${type_thing}_num_items(lh) LHM_lh_num_items(${type_thing},lh) | ||
151 | #define lh_${type_thing}_down_load(lh) LHM_lh_down_load(${type_thing},lh) | ||
152 | #define lh_${type_thing}_free(lh) LHM_lh_free(${type_thing},lh) | ||
153 | EOF | ||
154 | } | ||
155 | |||
156 | $new_stackfile .= "/* End of util/mkstack.pl block, you may now edit :-) */\n"; | ||
157 | $inside_block = 2; | ||
158 | } | ||
159 | |||
160 | |||
161 | if ($new_stackfile eq $old_stackfile) { | ||
162 | print "No changes to $safestack.h.\n"; | ||
163 | exit 0; # avoid unnecessary rebuild | ||
164 | } | ||
165 | |||
166 | if ($do_write) { | ||
167 | print "Writing new $safestack.h.\n"; | ||
168 | open OUT, ">$safestack.h" || die "Can't open output file"; | ||
169 | print OUT $new_stackfile; | ||
170 | close OUT; | ||
171 | } | ||