]> git.cryptolib.org Git - avr-crypto-lib.git/blob - host/shavs_test2.rb
freaking, me or the compiler?
[avr-crypto-lib.git] / host / shavs_test2.rb
1 #!/usr/bin/ruby
2 # shavs_test.rb
3 =begin
4     This file is part of the AVR-Crypto-Lib.
5     Copyright (C) 2008, 2009  Daniel Otte (daniel.otte@rub.de)
6
7     This program is free software: you can redistribute it and/or modify
8     it under the terms of the GNU General Public License as published by
9     the Free Software Foundation, either version 3 of the License, or
10     (at your option) any later version.
11
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.
16
17     You should have received a copy of the GNU General Public License
18     along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 =end
20
21 $debug = true
22 $debug = false
23 require 'rubygems'
24 require 'serialport'
25 require 'getopt/std'
26
27 $buffer_size = 0
28 $conffile_check = Hash.new
29 $conffile_check.default = 0
30
31 ################################################################################
32 # readconfigfile                                                               #
33 ################################################################################
34
35 def readconfigfile(fname, conf)
36   return conf if $conffile_check[fname]==1
37   $conffile_check[fname]=1
38   section = "default"
39   if not File.exists?(fname)
40     return conf
41   end
42   file = File.open(fname, "r")
43   until file.eof
44     line = file.gets()
45         next if /[\s]*#/.match(line)
46         if m=/\[[\s]*([^\s]*)[\s]*\]/.match(line)
47           section=m[1]
48           conf[m[1]] = Hash.new
49           next
50         end
51         next if not /=/.match(line)
52         m=/[\s]*([^\s]*)[\s]*=[\s]*([^\s]*)/.match(line)
53         if m[1]=="include"
54           Dir.glob(m[2]){ |fn| conf = readconfigfile(fn, conf) }
55         else
56           conf[section][m[1]] = m[2]
57         end
58   end
59   file.close()
60   return conf
61 end
62
63 ################################################################################
64 # reset_system                                                                 #
65 ################################################################################
66
67 def reset_system
68   $sp.print("exit\r")
69   sleep 0.1
70   $sp.print("exit\r")
71   sleep 0.1
72 end
73
74 ################################################################################
75 # scan_system                                                                  #
76 ################################################################################
77
78 def scan_system
79   algos = Hash.new
80   $sp.print("shavs_list\r")
81   while true
82     line=$sp.gets()
83     return algos if /^>$/.match(line)
84     if m = /[\*\ ]([a-z]):[\s]*([a-zA-Z0-9+_-]+)/.match(line)
85       algos[m[2]]=m[1]
86     end
87   end
88 end
89
90 ################################################################################
91 # init_system                                                                  #
92 ################################################################################
93
94 def init_system(algo_select)
95   $sp.print("echo off \r")
96   print("DBG i: " + "echo off \r"+"\n") if $debug
97  sleep 1
98   $sp.print("shavs_set #{algo_select}\r")
99   print("DBG i: " + "shavs_set #{$algo_select} \r"+"\n") if $debug
100   sleep 1
101   $sp.print("shavs_test1 \r")
102   print("DBG i: " + "shavs_test1 \r"+"\n") if $debug
103   begin
104     line=$sp.gets()
105   end while not m=/buffer_size[\s]*=[\s]*0x([0-9A-Fa-f]*)/.match(line)
106   $buffer_size = m[1].to_i(16)
107 end
108
109 ################################################################################
110 # get_md                                                                       #
111 ################################################################################
112
113 def get_md
114   begin
115     line = $sp.gets()
116         line = "" if line==nil
117         puts("DBG got: "+line) if $debug
118   end while not /[\s]*MD[\s]*=.*/.match(line)
119   return line
120 end
121
122 ################################################################################
123 # send_md                                                                      #
124 ################################################################################
125
126 def send_md(md_string)
127   $sp.print("Msg = ")
128   for i in 0..md_string.length-1
129     $sp.print(md_string[i].chr)
130 #       print("DBG s: "+ md_string[i].chr) if $debug
131 #   sleep(0.001)
132         if((i%($buffer_size*2)==0)&&(i!=0))
133           begin
134                 line=$sp.gets()
135           end while not /\./.match(line)
136         end
137   end
138 end
139
140 ################################################################################
141 # run_test                                                                     #
142 ################################################################################
143
144 def run_test(filename, skip=0)
145   nerrors = 0
146   line=1
147   if not File.exist?(filename)
148         puts("ERROR file "+filename+" does not exist!")
149         return nerrors
150   end
151   pos = 0
152   file = File.new(filename, "r");
153   until file.eof
154     begin
155       lb=file.gets()
156 #         printf("DBG info: file read: %s", lb)
157     end while not (file.eof or (/[\s]*Len[\s]*=/.match(lb)))
158 #       puts("got ya")
159         if file.eof
160           file.close()
161           return nerrors
162         end
163         len = /[\s]*Len[\s]*=[\s]*([0-9]*)/.match(lb)[1].to_i
164         if(skip>0)
165           skip -= 1
166           redo
167         end
168     puts("DBG sending: "+lb) if $debug
169         $sp.print(lb.strip)
170         $sp.print("\r")
171     begin
172           lb=file.gets()
173     end while not (file.eof or (m=/[\s]*Msg[\s]*=[\s]*([0-9a-fA-F]*)/.match(lb)))
174     return if file.eof
175     puts("DBG sending: "+lb) if $debug
176         send_md(m[1])
177         avr_md = get_md()
178     begin
179           lb=file.gets()
180     end while not /[\s]*MD[\s]*=.*/.match(lb)
181         a = (/[\s]*MD[\s]*=[\s]*([0-9a-fA-F]*).*/.match(lb))[1];
182         b = (/[\s]*MD[\s]*=[\s]*([0-9a-fA-F]*).*/.match(avr_md))[1];
183         a.upcase!
184         b.upcase!
185         printf("\n%4d (%4d) [%5d]: ", line, (line-1)*$linewidth, len) if (pos%$linewidth==0 and $linewidth!=0)
186         line += 1               if (pos%$linewidth==0 and $linewidth!=0)
187         #sleep(1)
188         #putc((a==b)?'*':'!')
189         if(a==b)
190           putc('*')
191         else
192           putc('!')
193         #  printf("<%d>",len)
194           printf("\nError @%05d: %s [should]\n           != %s [is]- ",len, a, b)
195           nerrors += 1
196         end
197         pos += 1
198   end
199   file.close()
200   return nerrors
201 end
202
203
204 ################################################################################
205 # MAIN                                                                         #
206 ################################################################################
207
208 opts = Getopt::Std.getopts("s:f:i:hdca")
209
210 conf = Hash.new
211 conf = readconfigfile("/etc/testport.conf", conf)
212 conf = readconfigfile("~/.testport.conf", conf)
213 conf = readconfigfile("testport.conf", conf)
214 conf = readconfigfile(opts["f"], conf) if opts["f"]
215
216 #puts conf.inspect
217
218 puts("serial port interface version: " + SerialPort::VERSION);
219 $linewidth = 64
220 params = { "baud"       => conf["PORT"]["baud"].to_i,
221             "data_bits" => conf["PORT"]["databits"].to_i,
222             "stop_bits" => conf["PORT"]["stopbits"].to_i,
223             "parity"    => SerialPort::NONE }
224 params["paraty"] = SerialPort::ODD   if conf["PORT"]["paraty"].downcase == "odd"
225 params["paraty"] = SerialPort::EVEN  if conf["PORT"]["paraty"].downcase == "even"
226 params["paraty"] = SerialPort::MARK  if conf["PORT"]["paraty"].downcase == "mark"
227 params["paraty"] = SerialPort::SPACE if conf["PORT"]["paraty"].downcase == "space"
228
229 puts("\nPort: "+conf["PORT"]["port"]+"@"    +
230                 params["baud"].to_s      +
231                 " "                      +
232                 params["data_bits"].to_s +
233                 conf["PORT"]["paraty"][0,1].upcase +
234                 params["stop_bits"].to_s +
235                 "\n")
236
237 $sp = SerialPort.new(conf["PORT"]["port"], params)
238
239 $sp.read_timeout=1000; # 5 minutes
240 $sp.flow_control = SerialPort::SOFT
241
242 reset_system()
243 algos=scan_system()
244 #puts algos.inspect
245
246 if opts["d"]
247   $debug = true
248 end
249
250 if opts["s"]
251   algos_rev = algos.invert
252   algo_tasks = Array.new
253   opts["s"].each_byte{ |x|
254     if algos_rev[x.chr]
255       algo_tasks << [algos_rev[x.chr],x.chr]
256     end
257   }
258 else
259   algo_tasks=algos.sort
260 end
261
262 algo_tasks.each do |algoa|
263   algo = algoa[0]
264   if conf[algo]==nil
265     puts("No test-set defined for #{algo} \r\n")
266     next
267   else
268         i=0
269         logfile=File.open(conf["PORT"]["testlogbase"]+algo+".txt", "a")
270         while conf[algo]["file_#{i}"] != nil
271           puts("Testing #{algo} with #{conf[algo]["file_#{i}"]}")
272           reset_system()
273           init_system(algoa[1])
274           skip=0
275           skip=opts["i"].to_i if opts["i"]
276           nerrors=run_test(conf[algo]["file_#{i}"], skip)
277       if nerrors == 0
278         puts("\n[ok]")
279         logfile.puts("[ok] "+conf[algo]["file_#{i}"]+ " ("+Time.now.to_s()+")")
280       else
281         puts("\n[errors: "+ nerrors.to_s() +"]")
282         logfile.puts("[error] "+nerrors.to_s+" "+conf[algo]["file_#{i}"]+ " ("+Time.now.to_s()+")")
283       end
284       i += 1
285     end
286     logfile.close()
287   end
288 end
289
290 =begin
291 nerrors = 0
292 for i in (5..(ARGV.size-1))
293   nerrors = run_test(ARGV[i])
294   if nerrors == 0
295     puts("\n[ok]")
296   else
297     puts("\n[errors: "+ nerrors.to_s() +"]")
298   end
299 end
300  $sp.print("EXIT\r");
301
302 #exit(0);
303 =end
304