helper.pl 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. #!/usr/bin/env perl
  2. use strict;
  3. use warnings;
  4. use Getopt::Long;
  5. use File::Find 'find';
  6. use File::Basename 'basename';
  7. use File::Glob 'bsd_glob';
  8. sub read_file {
  9. my $f = shift;
  10. open my $fh, "<", $f or die "FATAL: read_rawfile() cannot open file '$f': $!";
  11. binmode $fh;
  12. return do { local $/; <$fh> };
  13. }
  14. sub write_file {
  15. my ($f, $data) = @_;
  16. die "FATAL: write_file() no data" unless defined $data;
  17. open my $fh, ">", $f or die "FATAL: write_file() cannot open file '$f': $!";
  18. binmode $fh;
  19. print $fh $data or die "FATAL: write_file() cannot write to '$f': $!";
  20. close $fh or die "FATAL: write_file() cannot close '$f': $!";
  21. return;
  22. }
  23. sub check_source {
  24. my @all_files = (bsd_glob("makefile*"), bsd_glob("*.sh"), bsd_glob("*.pl"));
  25. find({ wanted=>sub { push @all_files, $_ if -f $_ }, no_chdir=>1 }, qw/src tests demos/);
  26. my $fails = 0;
  27. for my $file (sort @all_files) {
  28. next unless $file =~ /\.(c|h|pl|py|sh)$/ || basename($file) =~ /^makefile/i;
  29. my $troubles = {};
  30. my $lineno = 1;
  31. my $content = read_file($file);
  32. push @{$troubles->{crlf_line_end}}, '?' if $content =~ /\r/;
  33. for my $l (split /\n/, $content) {
  34. push @{$troubles->{merge_conflict}}, $lineno if $l =~ /^(<<<<<<<|=======|>>>>>>>)([^<=>]|$)/;
  35. push @{$troubles->{trailing_space}}, $lineno if $l =~ / $/;
  36. push @{$troubles->{tab}}, $lineno if $l =~ /\t/ && basename($file) !~ /^makefile/i;
  37. push @{$troubles->{non_ascii_char}}, $lineno if $l =~ /[^[:ascii:]]/;
  38. push @{$troubles->{cpp_comment}}, $lineno if $file =~ /\.(c|h)$/ && ($l =~ /\s\/\// || $l =~ /\/\/\s/);
  39. # in ./src we prefer using XMEMCPY, XMALLOC, XFREE ...
  40. push @{$troubles->{unwanted_memcpy}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bmemcpy\s*\(/;
  41. push @{$troubles->{unwanted_malloc}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bmalloc\s*\(/;
  42. push @{$troubles->{unwanted_realloc}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\brealloc\s*\(/;
  43. push @{$troubles->{unwanted_calloc}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bcalloc\s*\(/;
  44. push @{$troubles->{unwanted_free}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bfree\s*\(/;
  45. push @{$troubles->{unwanted_memset}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bmemset\s*\(/;
  46. push @{$troubles->{unwanted_memcpy}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bmemcpy\s*\(/;
  47. push @{$troubles->{unwanted_memmove}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bmemmove\s*\(/;
  48. push @{$troubles->{unwanted_memcmp}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bmemcmp\s*\(/;
  49. push @{$troubles->{unwanted_strcmp}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bstrcmp\s*\(/;
  50. push @{$troubles->{unwanted_strcpy}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bstrcpy\s*\(/;
  51. push @{$troubles->{unwanted_strncpy}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bstrncpy\s*\(/;
  52. push @{$troubles->{unwanted_clock}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bclock\s*\(/;
  53. push @{$troubles->{unwanted_qsort}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bqsort\s*\(/;
  54. push @{$troubles->{sizeof_no_brackets}}, $lineno if $file =~ /^src\/.*\.c$/ && $l =~ /\bsizeof\s*[^\(]/;
  55. if ($file =~ m|src/.*\.c$| &&
  56. $file !~ m|src/ciphers/.*\.c$| &&
  57. $file !~ m|src/hashes/.*\.c$| &&
  58. $file !~ m|src/math/.+_desc.c$| &&
  59. $l =~ /^static(\s+[a-zA-Z0-9_]+)+\s+([^_][a-zA-Z0-9_]+)\s*\(/) {
  60. push @{$troubles->{staticfunc_name}}, "$lineno($2)";
  61. }
  62. $lineno++;
  63. }
  64. for my $k (sort keys %$troubles) {
  65. warn "[$k] $file line:" . join(",", @{$troubles->{$k}}) . "\n";
  66. $fails++;
  67. }
  68. }
  69. warn( $fails > 0 ? "check-source: FAIL $fails\n" : "check-source: PASS\n" );
  70. return $fails;
  71. }
  72. sub check_defines {
  73. my $fails = 0;
  74. my $cust_h = read_file("src/headers/tomcrypt_custom.h");
  75. my $cryp_c = read_file("src/misc/crypt/crypt.c");
  76. $cust_h =~ s|/\*.*?\*/||sg; # remove comments
  77. $cryp_c =~ s|/\*.*?\*/||sg; # remove comments
  78. my %def = map { $_ => 1 } map { my $x = $_; $x =~ s/^\s*#define\s+(LTC_\S+).*$/$1/; $x } grep { /^\s*#define\s+LTC_\S+/ } split /\n/, $cust_h;
  79. for my $d (sort keys %def) {
  80. next if $d =~ /^LTC_(DH\d+|ECC\d+|ECC_\S+|MPI|MUTEX_\S+\(x\)|NO_\S+)$/;
  81. warn "$d missing in src/misc/crypt/crypt.c\n" and $fails++ if $cryp_c !~ /\Q$d\E/;
  82. }
  83. warn( $fails > 0 ? "check-defines: FAIL $fails\n" : "check-defines: PASS\n" );
  84. return $fails;
  85. }
  86. sub check_descriptor {
  87. my $which = shift;
  88. my $what = shift;
  89. my @src;
  90. my @descriptors;
  91. find({ wanted => sub { push @src, $_ if $_ =~ /\.c$/ }, no_chdir=>1 }, "./src/${which}/");
  92. for my $f (@src) {
  93. my @n = map { my $x = $_; $x =~ s/^.*?ltc_${what}_descriptor\s+(\S+).*$/$1/; $x } grep { $_ =~ /ltc_${what}_descriptor/ } split /\n/, read_file($f);
  94. push @descriptors, @n if @n;
  95. }
  96. my $fails = 0;
  97. for my $d (@descriptors) {
  98. for my $f ("./src/misc/crypt/crypt_register_all_${which}.c") {
  99. my $txt = read_file($f);
  100. warn "$d missing in $f\n" and $fails++ if $txt !~ /\Q$d\E/;
  101. }
  102. }
  103. for my $d (@descriptors) {
  104. for my $f ("./tests/test.c") {
  105. my $txt = read_file($f);
  106. warn "$d missing in $f\n" and $fails++ if $txt !~ /\Q$d\E/;
  107. }
  108. }
  109. my $name = sprintf("%-17s", "check-${which}:");
  110. warn( $fails > 0 ? "${name}FAIL $fails\n" : "${name}PASS\n" );
  111. return $fails;
  112. }
  113. sub check_descriptors {
  114. my $fails = 0;
  115. $fails = $fails + check_descriptor("ciphers", "cipher");
  116. $fails = $fails + check_descriptor("hashes", "hash");
  117. $fails = $fails + check_descriptor("prngs", "prng");
  118. return $fails;
  119. }
  120. sub check_comments {
  121. my $fails = 0;
  122. my $first_comment = <<'MARKER';
  123. /* LibTomCrypt, modular cryptographic library -- Tom St Denis
  124. *
  125. * LibTomCrypt is a library that provides various cryptographic
  126. * algorithms in a highly modular and flexible manner.
  127. *
  128. * The library is free for all purposes without any express
  129. * guarantee it works.
  130. */
  131. MARKER
  132. my $last_comment = <<'MARKER';
  133. /* ref: $Format:%D$ */
  134. /* git commit: $Format:%H$ */
  135. /* commit time: $Format:%ai$ */
  136. MARKER
  137. my @all_files;
  138. find({ wanted=> sub { push @all_files, $_ if $_ =~ /\.(c|h)$/ }, no_chdir=>1 }, 'demos', 'src', 'tests');
  139. for my $f (@all_files) {
  140. my $txt = read_file($f);
  141. if ($txt !~ /^\Q$first_comment\E/s) {
  142. warn "[first_comment] $f\n";
  143. $fails++;
  144. }
  145. if ($txt !~ /\Q$last_comment\E\s*$/s) {
  146. warn "[last_comment] $f\n";
  147. $fails++;
  148. }
  149. }
  150. warn( $fails > 0 ? "check-comments: FAIL $fails\n" : "check-comments: PASS\n" );
  151. return $fails;
  152. }
  153. sub prepare_variable {
  154. my ($varname, @list) = @_;
  155. my $output = "$varname=";
  156. my $len = length($output);
  157. foreach my $obj (sort @list) {
  158. $len = $len + length $obj;
  159. $obj =~ s/\*/\$/;
  160. if ($len > 100) {
  161. $output .= "\\\n";
  162. $len = length $obj;
  163. }
  164. $output .= $obj . ' ';
  165. }
  166. $output =~ s/ $//;
  167. return $output;
  168. }
  169. sub prepare_msvc_files_xml {
  170. my ($all, $exclude_re, $targets) = @_;
  171. my $last = [];
  172. my $depth = 2;
  173. # sort files in the same order as visual studio (ugly, I know)
  174. my @parts = ();
  175. for my $orig (@$all) {
  176. my $p = $orig;
  177. $p =~ s|/|/~|g;
  178. $p =~ s|/~([^/]+)$|/$1|g;
  179. # now we have: 'src/pk/rsa/rsa_verify_hash.c' > 'src/~pk/~rsa/rsa_verify_hash.c'
  180. my @l = map { sprintf "% -99s", $_ } split /\//, $p;
  181. push @parts, [ $orig, join(':', @l) ];
  182. }
  183. my @sorted = map { $_->[0] } sort { $a->[1] cmp $b->[1] } @parts;
  184. my $files = "<Files>\r\n";
  185. for my $full (@sorted) {
  186. my @items = split /\//, $full; # split by '/'
  187. $full =~ s|/|\\|g; # replace '/' bt '\'
  188. shift @items; # drop first one (src)
  189. pop @items; # drop last one (filename.ext)
  190. my $current = \@items;
  191. if (join(':', @$current) ne join(':', @$last)) {
  192. my $common = 0;
  193. $common++ while ($last->[$common] && $current->[$common] && $last->[$common] eq $current->[$common]);
  194. my $back = @$last - $common;
  195. if ($back > 0) {
  196. $files .= ("\t" x --$depth) . "</Filter>\r\n" for (1..$back);
  197. }
  198. my $fwd = [ @$current ]; splice(@$fwd, 0, $common);
  199. for my $i (0..scalar(@$fwd) - 1) {
  200. $files .= ("\t" x $depth) . "<Filter\r\n";
  201. $files .= ("\t" x $depth) . "\tName=\"$fwd->[$i]\"\r\n";
  202. $files .= ("\t" x $depth) . "\t>\r\n";
  203. $depth++;
  204. }
  205. $last = $current;
  206. }
  207. $files .= ("\t" x $depth) . "<File\r\n";
  208. $files .= ("\t" x $depth) . "\tRelativePath=\"$full\"\r\n";
  209. $files .= ("\t" x $depth) . "\t>\r\n";
  210. if ($full =~ $exclude_re) {
  211. for (@$targets) {
  212. $files .= ("\t" x $depth) . "\t<FileConfiguration\r\n";
  213. $files .= ("\t" x $depth) . "\t\tName=\"$_\"\r\n";
  214. $files .= ("\t" x $depth) . "\t\tExcludedFromBuild=\"true\"\r\n";
  215. $files .= ("\t" x $depth) . "\t\t>\r\n";
  216. $files .= ("\t" x $depth) . "\t\t<Tool\r\n";
  217. $files .= ("\t" x $depth) . "\t\t\tName=\"VCCLCompilerTool\"\r\n";
  218. $files .= ("\t" x $depth) . "\t\t\tAdditionalIncludeDirectories=\"\"\r\n";
  219. $files .= ("\t" x $depth) . "\t\t\tPreprocessorDefinitions=\"\"\r\n";
  220. $files .= ("\t" x $depth) . "\t\t/>\r\n";
  221. $files .= ("\t" x $depth) . "\t</FileConfiguration>\r\n";
  222. }
  223. }
  224. ########### aes_enc "hack" disabled - discussion: https://github.com/libtom/libtomcrypt/pull/158
  225. # if ($full eq 'src\ciphers\aes\aes.c') { #hack
  226. # my %cmd = (
  227. # 'Debug|Win32' => [ 'Debug/aes.obj;Debug/aes_enc.obj', 'cl /nologo /MLd /W3 /Gm /GX /ZI /Od /I &quot;src\headers&quot; /I &quot;..\libtommath&quot; /D &quot;_DEBUG&quot; /D &quot;LTM_DESC&quot; /D &quot;WIN32&quot; /D &quot;_MBCS&quot; /D &quot;_LIB&quot; /D &quot;LTC_SOURCE&quot; /D &quot;USE_LTM&quot; /Fp&quot;Debug/libtomcrypt.pch&quot; /YX /Fo&quot;Debug/&quot; /Fd&quot;Debug/&quot; /FD /GZ /c $(InputPath)&#x0D;&#x0A;cl /nologo /DENCRYPT_ONLY /MLd /W3 /Gm /GX /ZI /Od /I &quot;src\headers&quot; /I &quot;..\libtommath&quot; /D &quot;_DEBUG&quot; /D &quot;LTM_DESC&quot; /D &quot;WIN32&quot; /D &quot;_MBCS&quot; /D &quot;_LIB&quot; /D &quot;LTC_SOURCE&quot; /D &quot;USE_LTM&quot; /Fp&quot;Debug/libtomcrypt.pch&quot; /YX /Fo&quot;Debug/aes_enc.obj&quot; /Fd&quot;Debug/&quot; /FD /GZ /c $(InputPath)&#x0D;&#x0A;' ],
  228. # 'Release|Win32' => [ 'Release/aes.obj;Release/aes_enc.obj', 'cl /nologo /MLd /W3 /Gm /GX /ZI /Od /I &quot;src\headers&quot; /I &quot;..\libtommath&quot; /D &quot;_DEBUG&quot; /D &quot;LTM_DESC&quot; /D &quot;WIN32&quot; /D &quot;_MBCS&quot; /D &quot;_LIB&quot; /D &quot;LTC_SOURCE&quot; /D &quot;USE_LTM&quot; /Fp&quot;Release/libtomcrypt.pch&quot; /YX /Fo&quot;Release/&quot; /Fd&quot;Release/&quot; /FD /GZ /c $(InputPath)&#x0D;&#x0A;cl /nologo /DENCRYPT_ONLY /MLd /W3 /Gm /GX /ZI /Od /I &quot;src\headers&quot; /I &quot;..\libtommath&quot; /D &quot;_DEBUG&quot; /D &quot;LTM_DESC&quot; /D &quot;WIN32&quot; /D &quot;_MBCS&quot; /D &quot;_LIB&quot; /D &quot;LTC_SOURCE&quot; /D &quot;USE_LTM&quot; /Fp&quot;Release/libtomcrypt.pch&quot; /YX /Fo&quot;Release/aes_enc.obj&quot; /Fd&quot;Release/&quot; /FD /GZ /c $(InputPath)&#x0D;&#x0A;' ],
  229. # );
  230. # for (@$targets) {
  231. # next unless $cmd{$_};
  232. # $files .= ("\t" x $depth) . "\t<FileConfiguration\r\n";
  233. # $files .= ("\t" x $depth) . "\t\tName=\"$_\"\r\n";
  234. # $files .= ("\t" x $depth) . "\t\t>\r\n";
  235. # $files .= ("\t" x $depth) . "\t\t<Tool\r\n";
  236. # $files .= ("\t" x $depth) . "\t\t\tName=\"VCCustomBuildTool\"\r\n";
  237. # $files .= ("\t" x $depth) . "\t\t\tCommandLine=\"$cmd{$_}[1]\"\r\n";
  238. # $files .= ("\t" x $depth) . "\t\t\tOutputs=\"$cmd{$_}[0]\"\r\n";
  239. # $files .= ("\t" x $depth) . "\t\t/>\r\n";
  240. # $files .= ("\t" x $depth) . "\t</FileConfiguration>\r\n";
  241. # }
  242. # }
  243. $files .= ("\t" x $depth) . "</File>\r\n";
  244. }
  245. $files .= ("\t" x --$depth) . "</Filter>\r\n" for (@$last);
  246. $files .= "\t</Files>";
  247. return $files;
  248. }
  249. sub patch_file {
  250. my ($content, @variables) = @_;
  251. for my $v (@variables) {
  252. if ($v =~ /^([A-Z0-9_]+)\s*=.*$/si) {
  253. my $name = $1;
  254. $content =~ s/\n\Q$name\E\b.*?[^\\]\n/\n$v\n/s;
  255. }
  256. else {
  257. die "patch_file failed: " . substr($v, 0, 30) . "..";
  258. }
  259. }
  260. return $content;
  261. }
  262. sub version_from_tomcrypt_h {
  263. my $h = read_file(shift);
  264. if ($h =~ /\n#define\s*SCRYPT\s*"([0-9]+)\.([0-9]+)\.([0-9]+)(.*)"/s) {
  265. return "VERSION_PC=$1.$2.$3", "VERSION_LT=1:1", "VERSION=$1.$2.$3$4", "PROJECT_NUMBER=$1.$2.$3$4";
  266. }
  267. else {
  268. die "#define SCRYPT not found in tomcrypt.h";
  269. }
  270. }
  271. sub process_makefiles {
  272. my $write = shift;
  273. my $changed_count = 0;
  274. my @c = ();
  275. find({ no_chdir => 1, wanted => sub { push @c, $_ if -f $_ && $_ =~ /\.c$/ && $_ !~ /tab.c$/ } }, 'src');
  276. my @h = ();
  277. find({ no_chdir => 1, wanted => sub { push @h, $_ if -f $_ && $_ =~ /\.h$/ && $_ !~ /dh_static.h$/ && $_ !~ /tomcrypt_private.h$/ } }, 'src');
  278. my @all = ();
  279. find({ no_chdir => 1, wanted => sub { push @all, $_ if -f $_ && $_ =~ /\.(c|h)$/ } }, 'src');
  280. my @t = qw();
  281. find({ no_chdir => 1, wanted => sub { push @t, $_ if $_ =~ /(common|no_prng|_tests?|test).c$/ } }, 'tests');
  282. my @o = sort ('src/ciphers/aes/aes_enc.o', map { my $x = $_; $x =~ s/\.c$/.o/; $x } @c);
  283. my $var_o = prepare_variable("OBJECTS", @o);
  284. my $var_h = prepare_variable("HEADERS_PUB", (sort @h));
  285. (my $var_obj = $var_o) =~ s/\.o\b/.obj/sg;
  286. my $var_to = prepare_variable("TOBJECTS", sort map { my $x = $_; $x =~ s/\.c$/.o/; $x } @t);
  287. (my $var_tobj = $var_to) =~ s/\.o\b/.obj/sg;
  288. my @ver_version = version_from_tomcrypt_h("src/headers/tomcrypt.h");
  289. # update MSVC project files
  290. my $msvc_files = prepare_msvc_files_xml(\@all, qr/tab\.c$/, ['Debug|Win32', 'Release|Win32', 'Debug|x64', 'Release|x64']);
  291. for my $m (qw/libtomcrypt_VS2008.vcproj/) {
  292. my $old = read_file($m);
  293. my $new = $old;
  294. $new =~ s|<Files>.*</Files>|$msvc_files|s;
  295. if ($old ne $new) {
  296. write_file($m, $new) if $write;
  297. warn "changed: $m\n";
  298. $changed_count++;
  299. }
  300. }
  301. # update OBJECTS + HEADERS in makefile*
  302. for my $m (qw/ makefile makefile.shared makefile.unix makefile.mingw makefile.msvc makefile_include.mk doc\/Doxyfile /) {
  303. my $old = read_file($m);
  304. my $new = $m eq 'makefile.msvc' ? patch_file($old, $var_obj, $var_h, $var_tobj, @ver_version)
  305. : patch_file($old, $var_o, $var_h, $var_to, @ver_version);
  306. if ($old ne $new) {
  307. write_file($m, $new) if $write;
  308. warn "changed: $m\n";
  309. $changed_count++;
  310. }
  311. }
  312. if ($write) {
  313. return 0; # no failures
  314. }
  315. else {
  316. warn( $changed_count > 0 ? "check-makefiles: FAIL $changed_count\n" : "check-makefiles: PASS\n" );
  317. return $changed_count;
  318. }
  319. }
  320. sub die_usage {
  321. die <<"MARKER";
  322. usage: $0 -s OR $0 --check-source
  323. $0 -c OR $0 --check-descriptors
  324. $0 -d OR $0 --check-defines
  325. $0 -o OR $0 --check-comments
  326. $0 -m OR $0 --check-makefiles
  327. $0 -a OR $0 --check-all
  328. $0 -u OR $0 --update-makefiles
  329. $0 --fixupind crypt.ind
  330. MARKER
  331. }
  332. GetOptions( "s|check-source" => \my $check_source,
  333. "c|check-descriptors" => \my $check_descriptors,
  334. "d|check-defines" => \my $check_defines,
  335. "o|check-comments" => \my $check_comments,
  336. "m|check-makefiles" => \my $check_makefiles,
  337. "a|check-all" => \my $check_all,
  338. "u|update-makefiles" => \my $update_makefiles,
  339. "f|fixupind=s" => \my $fixupind,
  340. "h|help" => \my $help
  341. ) or die_usage;
  342. if ($fixupind) {
  343. my $txt = read_file($fixupind);
  344. $txt =~ s/^([^\n]*\n)/$1\n\\addcontentsline{toc}{chapter}{Index}\n/s;
  345. write_file($fixupind, $txt);
  346. exit 0;
  347. }
  348. my $failure;
  349. $failure ||= check_source() if $check_all || $check_source;
  350. $failure ||= check_defines() if $check_all || $check_defines;
  351. $failure ||= check_descriptors() if $check_all || $check_descriptors;
  352. $failure ||= check_comments() if $check_all || $check_comments;
  353. $failure ||= process_makefiles(0) if $check_all || $check_makefiles;
  354. $failure ||= process_makefiles(1) if $update_makefiles;
  355. die_usage unless defined $failure;
  356. exit $failure ? 1 : 0;
  357. # ref: $Format:%D$
  358. # git commit: $Format:%H$
  359. # commit time: $Format:%ai$