helper.pl 16 KB

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