helper.pl 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  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. $file !~ m|src/pk/ec25519/tweetnacl.c$| &&
  60. $file !~ m|src/stream/sober128/sober128_stream.c$| &&
  61. $l =~ /^static(\s+[a-zA-Z0-9_]+)+\s+([^_][a-zA-Z0-9_]+)\s*\(/) {
  62. push @{$troubles->{staticfunc_name}}, "$lineno($2)";
  63. }
  64. $lineno++;
  65. }
  66. for my $k (sort keys %$troubles) {
  67. warn "[$k] $file line:" . join(",", @{$troubles->{$k}}) . "\n";
  68. $fails++;
  69. }
  70. }
  71. warn( $fails > 0 ? "check-source: FAIL $fails\n" : "check-source: PASS\n" );
  72. return $fails;
  73. }
  74. sub check_defines {
  75. my $fails = 0;
  76. my $cust_h = read_file("src/headers/tomcrypt_custom.h");
  77. my $cryp_c = read_file("src/misc/crypt/crypt.c");
  78. $cust_h =~ s|/\*.*?\*/||sg; # remove comments
  79. $cryp_c =~ s|/\*.*?\*/||sg; # remove comments
  80. 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;
  81. for my $d (sort keys %def) {
  82. next if $d =~ /^LTC_(DH\d+|ECC\d+|ECC_\S+|MPI|MUTEX_\S+\(x\)|NO_\S+)$/;
  83. warn "$d missing in src/misc/crypt/crypt.c\n" and $fails++ if $cryp_c !~ /\Q$d\E/;
  84. }
  85. warn( $fails > 0 ? "check-defines: FAIL $fails\n" : "check-defines: PASS\n" );
  86. return $fails;
  87. }
  88. sub check_descriptor {
  89. my $which = shift;
  90. my $what = shift;
  91. my @src;
  92. my @descriptors;
  93. find({ wanted => sub { push @src, $_ if $_ =~ /\.c$/ }, no_chdir=>1 }, "./src/${which}/");
  94. for my $f (@src) {
  95. my @n = map { my $x = $_; $x =~ s/^.*?ltc_${what}_descriptor\s+(\S+).*$/$1/; $x } grep { $_ =~ /ltc_${what}_descriptor/ } split /\n/, read_file($f);
  96. push @descriptors, @n if @n;
  97. }
  98. my $fails = 0;
  99. for my $d (@descriptors) {
  100. for my $f ("./src/misc/crypt/crypt_register_all_${which}.c") {
  101. my $txt = read_file($f);
  102. warn "$d missing in $f\n" and $fails++ if $txt !~ /\Q$d\E/;
  103. }
  104. }
  105. for my $d (@descriptors) {
  106. for my $f ("./tests/test.c") {
  107. my $txt = read_file($f);
  108. warn "$d missing in $f\n" and $fails++ if $txt !~ /\Q$d\E/;
  109. }
  110. }
  111. my $name = sprintf("%-17s", "check-${which}:");
  112. warn( $fails > 0 ? "${name}FAIL $fails\n" : "${name}PASS\n" );
  113. return $fails;
  114. }
  115. sub check_descriptors {
  116. my $fails = 0;
  117. $fails = $fails + check_descriptor("ciphers", "cipher");
  118. $fails = $fails + check_descriptor("hashes", "hash");
  119. $fails = $fails + check_descriptor("prngs", "prng");
  120. return $fails;
  121. }
  122. sub check_comments {
  123. my $fails = 0;
  124. my $first_comment = <<'MARKER';
  125. /* LibTomCrypt, modular cryptographic library -- Tom St Denis
  126. *
  127. * LibTomCrypt is a library that provides various cryptographic
  128. * algorithms in a highly modular and flexible manner.
  129. *
  130. * The library is free for all purposes without any express
  131. * guarantee it works.
  132. */
  133. MARKER
  134. my $last_comment = <<'MARKER';
  135. /* ref: $Format:%D$ */
  136. /* git commit: $Format:%H$ */
  137. /* commit time: $Format:%ai$ */
  138. MARKER
  139. my @all_files;
  140. find({ wanted=> sub { push @all_files, $_ if $_ =~ /\.(c|h)$/ }, no_chdir=>1 }, 'demos', 'src', 'tests');
  141. for my $f (@all_files) {
  142. my $txt = read_file($f);
  143. if ($txt !~ /^\Q$first_comment\E/s) {
  144. warn "[first_comment] $f\n";
  145. $fails++;
  146. }
  147. if ($txt !~ /\Q$last_comment\E\s*$/s) {
  148. warn "[last_comment] $f\n";
  149. $fails++;
  150. }
  151. }
  152. warn( $fails > 0 ? "check-comments: FAIL $fails\n" : "check-comments: PASS\n" );
  153. return $fails;
  154. }
  155. sub prepare_variable {
  156. my ($varname, @list) = @_;
  157. my $output = "$varname=";
  158. my $len = length($output);
  159. foreach my $obj (sort @list) {
  160. $len = $len + length $obj;
  161. $obj =~ s/\*/\$/;
  162. if ($len > 100) {
  163. $output .= "\\\n";
  164. $len = length $obj;
  165. }
  166. $output .= $obj . ' ';
  167. }
  168. $output =~ s/ $//;
  169. return $output;
  170. }
  171. sub prepare_msvc_files_xml {
  172. my ($all, $exclude_re, $targets) = @_;
  173. my $last = [];
  174. my $depth = 2;
  175. # sort files in the same order as visual studio (ugly, I know)
  176. my @parts = ();
  177. for my $orig (@$all) {
  178. my $p = $orig;
  179. $p =~ s|/|/~|g;
  180. $p =~ s|/~([^/]+)$|/$1|g;
  181. # now we have: 'src/pk/rsa/rsa_verify_hash.c' > 'src/~pk/~rsa/rsa_verify_hash.c'
  182. my @l = map { sprintf "% -99s", $_ } split /\//, $p;
  183. push @parts, [ $orig, join(':', @l) ];
  184. }
  185. my @sorted = map { $_->[0] } sort { $a->[1] cmp $b->[1] } @parts;
  186. my $files = "<Files>\r\n";
  187. for my $full (@sorted) {
  188. my @items = split /\//, $full; # split by '/'
  189. $full =~ s|/|\\|g; # replace '/' bt '\'
  190. shift @items; # drop first one (src)
  191. pop @items; # drop last one (filename.ext)
  192. my $current = \@items;
  193. if (join(':', @$current) ne join(':', @$last)) {
  194. my $common = 0;
  195. $common++ while ($last->[$common] && $current->[$common] && $last->[$common] eq $current->[$common]);
  196. my $back = @$last - $common;
  197. if ($back > 0) {
  198. $files .= ("\t" x --$depth) . "</Filter>\r\n" for (1..$back);
  199. }
  200. my $fwd = [ @$current ]; splice(@$fwd, 0, $common);
  201. for my $i (0..scalar(@$fwd) - 1) {
  202. $files .= ("\t" x $depth) . "<Filter\r\n";
  203. $files .= ("\t" x $depth) . "\tName=\"$fwd->[$i]\"\r\n";
  204. $files .= ("\t" x $depth) . "\t>\r\n";
  205. $depth++;
  206. }
  207. $last = $current;
  208. }
  209. $files .= ("\t" x $depth) . "<File\r\n";
  210. $files .= ("\t" x $depth) . "\tRelativePath=\"$full\"\r\n";
  211. $files .= ("\t" x $depth) . "\t>\r\n";
  212. if ($full =~ $exclude_re) {
  213. for (@$targets) {
  214. $files .= ("\t" x $depth) . "\t<FileConfiguration\r\n";
  215. $files .= ("\t" x $depth) . "\t\tName=\"$_\"\r\n";
  216. $files .= ("\t" x $depth) . "\t\tExcludedFromBuild=\"true\"\r\n";
  217. $files .= ("\t" x $depth) . "\t\t>\r\n";
  218. $files .= ("\t" x $depth) . "\t\t<Tool\r\n";
  219. $files .= ("\t" x $depth) . "\t\t\tName=\"VCCLCompilerTool\"\r\n";
  220. $files .= ("\t" x $depth) . "\t\t\tAdditionalIncludeDirectories=\"\"\r\n";
  221. $files .= ("\t" x $depth) . "\t\t\tPreprocessorDefinitions=\"\"\r\n";
  222. $files .= ("\t" x $depth) . "\t\t/>\r\n";
  223. $files .= ("\t" x $depth) . "\t</FileConfiguration>\r\n";
  224. }
  225. }
  226. ########### aes_enc "hack" disabled - discussion: https://github.com/libtom/libtomcrypt/pull/158
  227. # if ($full eq 'src\ciphers\aes\aes.c') { #hack
  228. # my %cmd = (
  229. # '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;' ],
  230. # '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;' ],
  231. # );
  232. # for (@$targets) {
  233. # next unless $cmd{$_};
  234. # $files .= ("\t" x $depth) . "\t<FileConfiguration\r\n";
  235. # $files .= ("\t" x $depth) . "\t\tName=\"$_\"\r\n";
  236. # $files .= ("\t" x $depth) . "\t\t>\r\n";
  237. # $files .= ("\t" x $depth) . "\t\t<Tool\r\n";
  238. # $files .= ("\t" x $depth) . "\t\t\tName=\"VCCustomBuildTool\"\r\n";
  239. # $files .= ("\t" x $depth) . "\t\t\tCommandLine=\"$cmd{$_}[1]\"\r\n";
  240. # $files .= ("\t" x $depth) . "\t\t\tOutputs=\"$cmd{$_}[0]\"\r\n";
  241. # $files .= ("\t" x $depth) . "\t\t/>\r\n";
  242. # $files .= ("\t" x $depth) . "\t</FileConfiguration>\r\n";
  243. # }
  244. # }
  245. $files .= ("\t" x $depth) . "</File>\r\n";
  246. }
  247. $files .= ("\t" x --$depth) . "</Filter>\r\n" for (@$last);
  248. $files .= "\t</Files>";
  249. return $files;
  250. }
  251. sub patch_file {
  252. my ($content, @variables) = @_;
  253. for my $v (@variables) {
  254. if ($v =~ /^([A-Z0-9_]+)\s*=.*$/si) {
  255. my $name = $1;
  256. $content =~ s/\n\Q$name\E\b.*?[^\\]\n/\n$v\n/s;
  257. }
  258. else {
  259. die "patch_file failed: " . substr($v, 0, 30) . "..";
  260. }
  261. }
  262. return $content;
  263. }
  264. sub version_from_tomcrypt_h {
  265. my $h = read_file(shift);
  266. if ($h =~ /\n#define\s*SCRYPT\s*"([0-9]+)\.([0-9]+)\.([0-9]+)(.*)"/s) {
  267. return "VERSION_PC=$1.$2.$3", "VERSION_LT=1:1", "VERSION=$1.$2.$3$4", "PROJECT_NUMBER=$1.$2.$3$4";
  268. }
  269. else {
  270. die "#define SCRYPT not found in tomcrypt.h";
  271. }
  272. }
  273. sub process_makefiles {
  274. my $write = shift;
  275. my $changed_count = 0;
  276. my @c = ();
  277. find({ no_chdir => 1, wanted => sub { push @c, $_ if -f $_ && $_ =~ /\.c$/ && $_ !~ /tab.c$/ } }, 'src');
  278. my @h = ();
  279. find({ no_chdir => 1, wanted => sub { push @h, $_ if -f $_ && $_ =~ /\.h$/ && $_ !~ /dh_static.h$/ && $_ !~ /tomcrypt_private.h$/ } }, 'src');
  280. my @all = ();
  281. find({ no_chdir => 1, wanted => sub { push @all, $_ if -f $_ && $_ =~ /\.(c|h)$/ } }, 'src');
  282. my @t = qw();
  283. find({ no_chdir => 1, wanted => sub { push @t, $_ if $_ =~ /(common|no_prng|_tests?|test).c$/ } }, 'tests');
  284. my @o = sort ('src/ciphers/aes/aes_enc.o', map { my $x = $_; $x =~ s/\.c$/.o/; $x } @c);
  285. my $var_o = prepare_variable("OBJECTS", @o);
  286. my $var_h = prepare_variable("HEADERS_PUB", (sort @h));
  287. (my $var_obj = $var_o) =~ s/\.o\b/.obj/sg;
  288. my $var_to = prepare_variable("TOBJECTS", sort map { my $x = $_; $x =~ s/\.c$/.o/; $x } @t);
  289. (my $var_tobj = $var_to) =~ s/\.o\b/.obj/sg;
  290. my @ver_version = version_from_tomcrypt_h("src/headers/tomcrypt.h");
  291. # update MSVC project files
  292. my $msvc_files = prepare_msvc_files_xml(\@all, qr/tab\.c$/, ['Debug|Win32', 'Release|Win32', 'Debug|x64', 'Release|x64']);
  293. for my $m (qw/libtomcrypt_VS2008.vcproj/) {
  294. my $old = read_file($m);
  295. my $new = $old;
  296. $new =~ s|<Files>.*</Files>|$msvc_files|s;
  297. if ($old ne $new) {
  298. write_file($m, $new) if $write;
  299. warn "changed: $m\n";
  300. $changed_count++;
  301. }
  302. }
  303. # update OBJECTS + HEADERS in makefile*
  304. for my $m (qw/ makefile makefile.shared makefile.unix makefile.mingw makefile.msvc makefile_include.mk doc\/Doxyfile /) {
  305. my $old = read_file($m);
  306. my $new = $m eq 'makefile.msvc' ? patch_file($old, $var_obj, $var_h, $var_tobj, @ver_version)
  307. : patch_file($old, $var_o, $var_h, $var_to, @ver_version);
  308. if ($old ne $new) {
  309. write_file($m, $new) if $write;
  310. warn "changed: $m\n";
  311. $changed_count++;
  312. }
  313. }
  314. if ($write) {
  315. return 0; # no failures
  316. }
  317. else {
  318. warn( $changed_count > 0 ? "check-makefiles: FAIL $changed_count\n" : "check-makefiles: PASS\n" );
  319. return $changed_count;
  320. }
  321. }
  322. sub die_usage {
  323. die <<"MARKER";
  324. usage: $0 -s OR $0 --check-source
  325. $0 -c OR $0 --check-descriptors
  326. $0 -d OR $0 --check-defines
  327. $0 -o OR $0 --check-comments
  328. $0 -m OR $0 --check-makefiles
  329. $0 -a OR $0 --check-all
  330. $0 -u OR $0 --update-makefiles
  331. $0 --fixupind crypt.ind
  332. MARKER
  333. }
  334. GetOptions( "s|check-source" => \my $check_source,
  335. "c|check-descriptors" => \my $check_descriptors,
  336. "d|check-defines" => \my $check_defines,
  337. "o|check-comments" => \my $check_comments,
  338. "m|check-makefiles" => \my $check_makefiles,
  339. "a|check-all" => \my $check_all,
  340. "u|update-makefiles" => \my $update_makefiles,
  341. "f|fixupind=s" => \my $fixupind,
  342. "h|help" => \my $help
  343. ) or die_usage;
  344. if ($fixupind) {
  345. my $txt = read_file($fixupind);
  346. $txt =~ s/^([^\n]*\n)/$1\n\\addcontentsline{toc}{chapter}{Index}\n/s;
  347. write_file($fixupind, $txt);
  348. exit 0;
  349. }
  350. my $failure;
  351. $failure ||= check_source() if $check_all || $check_source;
  352. $failure ||= check_defines() if $check_all || $check_defines;
  353. $failure ||= check_descriptors() if $check_all || $check_descriptors;
  354. $failure ||= check_comments() if $check_all || $check_comments;
  355. $failure ||= process_makefiles(0) if $check_all || $check_makefiles;
  356. $failure ||= process_makefiles(1) if $update_makefiles;
  357. die_usage unless defined $failure;
  358. exit $failure ? 1 : 0;
  359. # ref: $Format:%D$
  360. # git commit: $Format:%H$
  361. # commit time: $Format:%ai$