md5-586.pl 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. #! /usr/bin/env perl
  2. # Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License 2.0 (the "License"). You may not use
  5. # this file except in compliance with the License. You can obtain a copy
  6. # in the file LICENSE in the source distribution or at
  7. # https://www.openssl.org/source/license.html
  8. # Normal is the
  9. # md5_block_x86(MD5_CTX *c, ULONG *X);
  10. # version, non-normal is the
  11. # md5_block_x86(MD5_CTX *c, ULONG *X,int blocks);
  12. $normal=0;
  13. $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1;
  14. push(@INC,"${dir}","${dir}../../perlasm");
  15. require "x86asm.pl";
  16. # $output is the last argument if it looks like a file (it has an extension)
  17. $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef;
  18. $output and open STDOUT,">$output";
  19. &asm_init($ARGV[0]);
  20. $A="eax";
  21. $B="ebx";
  22. $C="ecx";
  23. $D="edx";
  24. $tmp1="edi";
  25. $tmp2="ebp";
  26. $X="esi";
  27. # What we need to load into $tmp for the next round
  28. %Ltmp1=("R0",&Np($C), "R1",&Np($C), "R2",&Np($C), "R3",&Np($D));
  29. @xo=(
  30. 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, # R0
  31. 1, 6, 11, 0, 5, 10, 15, 4, 9, 14, 3, 8, 13, 2, 7, 12, # R1
  32. 5, 8, 11, 14, 1, 4, 7, 10, 13, 0, 3, 6, 9, 12, 15, 2, # R2
  33. 0, 7, 14, 5, 12, 3, 10, 1, 8, 15, 6, 13, 4, 11, 2, 9, # R3
  34. );
  35. &md5_block("ossl_md5_block_asm_data_order");
  36. &asm_finish();
  37. close STDOUT or die "error closing STDOUT: $!";
  38. sub Np
  39. {
  40. local($p)=@_;
  41. local(%n)=($A,$D,$B,$A,$C,$B,$D,$C);
  42. return($n{$p});
  43. }
  44. sub R0
  45. {
  46. local($pos,$a,$b,$c,$d,$K,$ki,$s,$t)=@_;
  47. &mov($tmp1,$C) if $pos < 0;
  48. &mov($tmp2,&DWP($xo[$ki]*4,$K,"",0)) if $pos < 0; # very first one
  49. # body proper
  50. &comment("R0 $ki");
  51. &xor($tmp1,$d); # F function - part 2
  52. &and($tmp1,$b); # F function - part 3
  53. &lea($a,&DWP($t,$a,$tmp2,1));
  54. &xor($tmp1,$d); # F function - part 4
  55. &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0)) if ($pos != 2);
  56. &add($a,$tmp1);
  57. &rotl($a,$s);
  58. &mov($tmp1,&Np($c)) if $pos < 1; # next tmp1 for R0
  59. &mov($tmp1,&Np($c)) if $pos == 1; # next tmp1 for R1
  60. &add($a,$b);
  61. }
  62. sub R1
  63. {
  64. local($pos,$a,$b,$c,$d,$K,$ki,$s,$t)=@_;
  65. &comment("R1 $ki");
  66. &xor($tmp1,$b); # G function - part 2
  67. &and($tmp1,$d); # G function - part 3
  68. &lea($a,&DWP($t,$a,$tmp2,1));
  69. &xor($tmp1,$c); # G function - part 4
  70. &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0)) if ($pos != 2);
  71. &add($a,$tmp1);
  72. &mov($tmp1,&Np($c)) if $pos < 1; # G function - part 1
  73. &mov($tmp1,&Np($c)) if $pos == 1; # G function - part 1
  74. &rotl($a,$s);
  75. &add($a,$b);
  76. }
  77. sub R2
  78. {
  79. local($n,$pos,$a,$b,$c,$d,$K,$ki,$s,$t)=@_;
  80. # This one is different, only 3 logical operations
  81. if (($n & 1) == 0)
  82. {
  83. &comment("R2 $ki");
  84. # make sure to do 'D' first, not 'B', else we clash with
  85. # the last add from the previous round.
  86. &xor($tmp1,$d); # H function - part 2
  87. &xor($tmp1,$b); # H function - part 3
  88. &lea($a,&DWP($t,$a,$tmp2,1));
  89. &add($a,$tmp1);
  90. &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0));
  91. &rotl($a,$s);
  92. &mov($tmp1,&Np($c));
  93. }
  94. else
  95. {
  96. &comment("R2 $ki");
  97. # make sure to do 'D' first, not 'B', else we clash with
  98. # the last add from the previous round.
  99. &add($b,$c); # MOVED FORWARD
  100. &xor($tmp1,$d); # H function - part 2
  101. &lea($a,&DWP($t,$a,$tmp2,1));
  102. &xor($tmp1,$b); # H function - part 3
  103. &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0)) if ($pos != 2);
  104. &add($a,$tmp1);
  105. &mov($tmp1,&Np($c)) if $pos < 1; # H function - part 1
  106. &mov($tmp1,-1) if $pos == 1; # I function - part 1
  107. &rotl($a,$s);
  108. &add($a,$b);
  109. }
  110. }
  111. sub R3
  112. {
  113. local($pos,$a,$b,$c,$d,$K,$ki,$s,$t)=@_;
  114. &comment("R3 $ki");
  115. # &not($tmp1)
  116. &xor($tmp1,$d) if $pos < 0; # I function - part 2
  117. &or($tmp1,$b); # I function - part 3
  118. &lea($a,&DWP($t,$a,$tmp2,1));
  119. &xor($tmp1,$c); # I function - part 4
  120. &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0)) if $pos != 2; # load X/k value
  121. &mov($tmp2,&wparam(0)) if $pos == 2;
  122. &add($a,$tmp1);
  123. &mov($tmp1,-1) if $pos < 1; # H function - part 1
  124. &add($K,64) if $pos >=1 && !$normal;
  125. &rotl($a,$s);
  126. &xor($tmp1,&Np($d)) if $pos <= 0; # I function - part = first time
  127. &mov($tmp1,&DWP( 0,$tmp2,"",0)) if $pos > 0;
  128. &add($a,$b);
  129. }
  130. sub md5_block
  131. {
  132. local($name)=@_;
  133. &function_begin_B($name,"",3);
  134. # parameter 1 is the MD5_CTX structure.
  135. # A 0
  136. # B 4
  137. # C 8
  138. # D 12
  139. &push("esi");
  140. &push("edi");
  141. &mov($tmp1, &wparam(0)); # edi
  142. &mov($X, &wparam(1)); # esi
  143. &mov($C, &wparam(2));
  144. &push("ebp");
  145. &shl($C, 6);
  146. &push("ebx");
  147. &add($C, $X); # offset we end at
  148. &sub($C, 64);
  149. &mov($A, &DWP( 0,$tmp1,"",0));
  150. &push($C); # Put on the TOS
  151. &mov($B, &DWP( 4,$tmp1,"",0));
  152. &mov($C, &DWP( 8,$tmp1,"",0));
  153. &mov($D, &DWP(12,$tmp1,"",0));
  154. &set_label("start") unless $normal;
  155. &comment("");
  156. &comment("R0 section");
  157. &R0(-2,$A,$B,$C,$D,$X, 0, 7,0xd76aa478);
  158. &R0( 0,$D,$A,$B,$C,$X, 1,12,0xe8c7b756);
  159. &R0( 0,$C,$D,$A,$B,$X, 2,17,0x242070db);
  160. &R0( 0,$B,$C,$D,$A,$X, 3,22,0xc1bdceee);
  161. &R0( 0,$A,$B,$C,$D,$X, 4, 7,0xf57c0faf);
  162. &R0( 0,$D,$A,$B,$C,$X, 5,12,0x4787c62a);
  163. &R0( 0,$C,$D,$A,$B,$X, 6,17,0xa8304613);
  164. &R0( 0,$B,$C,$D,$A,$X, 7,22,0xfd469501);
  165. &R0( 0,$A,$B,$C,$D,$X, 8, 7,0x698098d8);
  166. &R0( 0,$D,$A,$B,$C,$X, 9,12,0x8b44f7af);
  167. &R0( 0,$C,$D,$A,$B,$X,10,17,0xffff5bb1);
  168. &R0( 0,$B,$C,$D,$A,$X,11,22,0x895cd7be);
  169. &R0( 0,$A,$B,$C,$D,$X,12, 7,0x6b901122);
  170. &R0( 0,$D,$A,$B,$C,$X,13,12,0xfd987193);
  171. &R0( 0,$C,$D,$A,$B,$X,14,17,0xa679438e);
  172. &R0( 1,$B,$C,$D,$A,$X,15,22,0x49b40821);
  173. &comment("");
  174. &comment("R1 section");
  175. &R1(-1,$A,$B,$C,$D,$X,16, 5,0xf61e2562);
  176. &R1( 0,$D,$A,$B,$C,$X,17, 9,0xc040b340);
  177. &R1( 0,$C,$D,$A,$B,$X,18,14,0x265e5a51);
  178. &R1( 0,$B,$C,$D,$A,$X,19,20,0xe9b6c7aa);
  179. &R1( 0,$A,$B,$C,$D,$X,20, 5,0xd62f105d);
  180. &R1( 0,$D,$A,$B,$C,$X,21, 9,0x02441453);
  181. &R1( 0,$C,$D,$A,$B,$X,22,14,0xd8a1e681);
  182. &R1( 0,$B,$C,$D,$A,$X,23,20,0xe7d3fbc8);
  183. &R1( 0,$A,$B,$C,$D,$X,24, 5,0x21e1cde6);
  184. &R1( 0,$D,$A,$B,$C,$X,25, 9,0xc33707d6);
  185. &R1( 0,$C,$D,$A,$B,$X,26,14,0xf4d50d87);
  186. &R1( 0,$B,$C,$D,$A,$X,27,20,0x455a14ed);
  187. &R1( 0,$A,$B,$C,$D,$X,28, 5,0xa9e3e905);
  188. &R1( 0,$D,$A,$B,$C,$X,29, 9,0xfcefa3f8);
  189. &R1( 0,$C,$D,$A,$B,$X,30,14,0x676f02d9);
  190. &R1( 1,$B,$C,$D,$A,$X,31,20,0x8d2a4c8a);
  191. &comment("");
  192. &comment("R2 section");
  193. &R2( 0,-1,$A,$B,$C,$D,$X,32, 4,0xfffa3942);
  194. &R2( 1, 0,$D,$A,$B,$C,$X,33,11,0x8771f681);
  195. &R2( 2, 0,$C,$D,$A,$B,$X,34,16,0x6d9d6122);
  196. &R2( 3, 0,$B,$C,$D,$A,$X,35,23,0xfde5380c);
  197. &R2( 4, 0,$A,$B,$C,$D,$X,36, 4,0xa4beea44);
  198. &R2( 5, 0,$D,$A,$B,$C,$X,37,11,0x4bdecfa9);
  199. &R2( 6, 0,$C,$D,$A,$B,$X,38,16,0xf6bb4b60);
  200. &R2( 7, 0,$B,$C,$D,$A,$X,39,23,0xbebfbc70);
  201. &R2( 8, 0,$A,$B,$C,$D,$X,40, 4,0x289b7ec6);
  202. &R2( 9, 0,$D,$A,$B,$C,$X,41,11,0xeaa127fa);
  203. &R2(10, 0,$C,$D,$A,$B,$X,42,16,0xd4ef3085);
  204. &R2(11, 0,$B,$C,$D,$A,$X,43,23,0x04881d05);
  205. &R2(12, 0,$A,$B,$C,$D,$X,44, 4,0xd9d4d039);
  206. &R2(13, 0,$D,$A,$B,$C,$X,45,11,0xe6db99e5);
  207. &R2(14, 0,$C,$D,$A,$B,$X,46,16,0x1fa27cf8);
  208. &R2(15, 1,$B,$C,$D,$A,$X,47,23,0xc4ac5665);
  209. &comment("");
  210. &comment("R3 section");
  211. &R3(-1,$A,$B,$C,$D,$X,48, 6,0xf4292244);
  212. &R3( 0,$D,$A,$B,$C,$X,49,10,0x432aff97);
  213. &R3( 0,$C,$D,$A,$B,$X,50,15,0xab9423a7);
  214. &R3( 0,$B,$C,$D,$A,$X,51,21,0xfc93a039);
  215. &R3( 0,$A,$B,$C,$D,$X,52, 6,0x655b59c3);
  216. &R3( 0,$D,$A,$B,$C,$X,53,10,0x8f0ccc92);
  217. &R3( 0,$C,$D,$A,$B,$X,54,15,0xffeff47d);
  218. &R3( 0,$B,$C,$D,$A,$X,55,21,0x85845dd1);
  219. &R3( 0,$A,$B,$C,$D,$X,56, 6,0x6fa87e4f);
  220. &R3( 0,$D,$A,$B,$C,$X,57,10,0xfe2ce6e0);
  221. &R3( 0,$C,$D,$A,$B,$X,58,15,0xa3014314);
  222. &R3( 0,$B,$C,$D,$A,$X,59,21,0x4e0811a1);
  223. &R3( 0,$A,$B,$C,$D,$X,60, 6,0xf7537e82);
  224. &R3( 0,$D,$A,$B,$C,$X,61,10,0xbd3af235);
  225. &R3( 0,$C,$D,$A,$B,$X,62,15,0x2ad7d2bb);
  226. &R3( 2,$B,$C,$D,$A,$X,63,21,0xeb86d391);
  227. # &mov($tmp2,&wparam(0)); # done in the last R3
  228. # &mov($tmp1, &DWP( 0,$tmp2,"",0)); # done is the last R3
  229. &add($A,$tmp1);
  230. &mov($tmp1, &DWP( 4,$tmp2,"",0));
  231. &add($B,$tmp1);
  232. &mov($tmp1, &DWP( 8,$tmp2,"",0));
  233. &add($C,$tmp1);
  234. &mov($tmp1, &DWP(12,$tmp2,"",0));
  235. &add($D,$tmp1);
  236. &mov(&DWP( 0,$tmp2,"",0),$A);
  237. &mov(&DWP( 4,$tmp2,"",0),$B);
  238. &mov($tmp1,&swtmp(0)) unless $normal;
  239. &mov(&DWP( 8,$tmp2,"",0),$C);
  240. &mov(&DWP(12,$tmp2,"",0),$D);
  241. &cmp($tmp1,$X) unless $normal; # check count
  242. &jae(&label("start")) unless $normal;
  243. &pop("eax"); # pop the temp variable off the stack
  244. &pop("ebx");
  245. &pop("ebp");
  246. &pop("edi");
  247. &pop("esi");
  248. &ret();
  249. &function_end_B($name);
  250. }