-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscriptim.py
executable file
·538 lines (433 loc) · 17.4 KB
/
scriptim.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
#!/usr/bin/python
# scriptim - aka scriptor improved
# python shell to interact with smartcards
#
# Copyright 2011 Bernard Paulus <[email protected]>
#
# This file is part of scriptim
#
# scriptim is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import re
import getopt, sys
import atexit # history stuff
import os
try: # improves current shell with command-line editing capabilities
# TODO : support history between sessions
import readline
except ImportError:
print "Module readline not available."
print "Continuing with reduced functionnalities"
try:
import smartcard
# for error checking
from smartcard.sw.ErrorCheckingChain import ErrorCheckingChain
from smartcard.sw.ISO7816_4ErrorChecker import ISO7816_4ErrorChecker
from smartcard.sw.ISO7816_8ErrorChecker import ISO7816_8ErrorChecker
from smartcard.sw.ISO7816_9ErrorChecker import ISO7816_9ErrorChecker
from smartcard.sw.SWExceptions import SWException, WarningProcessingException
except ImportError:
print "No smartcard module found"
print "on debian, try: sudo aptitude install python-pyscard"
sys.exit(3)
from scriptim_utils import *
#=== UTILS ===
#+++ shell utils +++
def command_loop(fun_usrinput=lambda x: x not in ["quit", "exit", None] and
str(x) or None):
"""
Reads user input then calls fun_usrinput(USER_INPUT) and prints the result (without carriage
return added) until fun_usrinput(USER_INPUT) returns None
NOTE: EOF is passed as None to fun_usrinput().
Default function only copies the input to stdout, except when feeded by quit,
exit, EOF (ctrl+D) or the empty string
(because str("") evaluates to "" which is equivalent to False in a python
condition. This is a side-effect of the 'or')
"""
ustr=None
end_loop=False
while end_loop is not True:
# protected input
try:
ustr=raw_input()
except EOFError:
ustr=None
# input treatment
out=fun_usrinput(ustr)
if out is None:
end_loop=True
elif len(str(out)) > 0:
print (out)
def selector(choices_list, default_index=None):
"""Proposes a series of choices to the user and returns a couple
(index of selected entry, entry)"""
default_return=None
if 0 <= default_index < len(choices_list): # default_index=None => False
default_return=(default_index, choices_list[default_index])
for i in xrange(len(choices_list)):
if i == default_index:
print "["+str(i)+"]\t", str(choices_list[i])
else:
print " "+str(i)+" \t", str(choices_list[i])
try:
ustr=raw_input("Your number: ")
except EOFError:
ustr=None
try:
choice=int(ustr or str(default_index))
# in the case of empty or invalid entry, the default is returned
except ValueError:
if 0 <= default_index < len(choices_list):
print "using default choice"
else:
print "invalid entry"
return default_return
if 0 <= choice < len(choices_list):
return (choice, choices_list[choice])
else:
return default_return
#+++ pyscard wrapper functions +++
def safe_list_readers(groups=[]):
"""list readers, or exits nicely if pcsc daemon is not running"""
try:
return smartcard.System.readers(groups)
except EstablishContextException, e:
print str(e)
print "Unable to list readers. Unix: pcsc daemon should be running."
sys.exit(2)
def reader_plugged(reader, raise_e=True):
"""check whether reader is pysically connected or not
If raise_e is False, it will return a boolean indicating it's presence
If it's True, ReaderAbsentException will be raised
Note: even though this doesn't give any guarantee about future reader presence,
we will use this to protect commands
"""
#TODO : check which exceptions are thrown if card is disconnected and recover
# from that, you moron!
if not isinstance(reader, smartcard.reader.Reader.Reader):
plugged=False # compensate for BUG in pyscard
# http://pyscard.sourceforge.net/epydoc/smartcard.reader.Reader-pysrc.html#Reader.__eq__
else:
plugged=reader in safe_list_readers()
if raise_e and not plugged:
raise ReaderAbsentException("reader "+str(reader)+" is not present")
return plugged
#+++ utils string parsing and output formating functions +++
def error_location( ustr, index):
"""returns the string appended with a newline and one indication of the
given index
the current implementation places an '^' right under the character at
the given index.
"""
# TODO : deal with long lines.
index_repr="@"+str(index)+" "
if not index >= len(index_repr): # not enough space
index_repr=""
return ustr+"\n"+index_repr+''.join([' ' for num in xrange(index-(len(index_repr)))])+"^"
def normal_hex_input(ustr):
"""Parse a normal hexadecimal line of input
Normal lines are formed of blocs whose length is even, and shortcut blocs
whose length is 1. Those shortcut blocs are equivalent to "0X", where X is
the shortcut bloc. The accepted character set is the set of all hexadecimal
characters.
We return "" if the string doesn't contain any command,
or a string indicating a parsing error if there is one,
or the command, a list of bytes if given string is well-formed
"""
base=16 # hexadecimal input
command=[]
for bloc in ustr.split():
if len(bloc) % 2 == 1 and len(bloc) != 1: # don't accept blocs of 3, 5, ...
# since user might forget a symbol if he doesn't split his
# command, but accept shortcuts for the high-order 0
s="length of "+bloc+" is not even or equal to 1\n\n"
m=re.search(escape_backslashes(bloc), ustr)
s+=error_location(ustr, m.start())
return s
byte=0
for i in xrange(len(bloc)):
try:
value=int(bloc[i],base)
except ValueError:
s="character "+bloc[i]+" is not an hexadecimal\n\n"
m=re.search(escape_backslashes(bloc), ustr)
s+=error_location(ustr, m.start()+i)
return s
if len(bloc)== 1: # allows shortcuts for the high-order 0
byte=value
command.append(byte) # byte complete
elif i % 2 ==0: # the first 4 bits of a byte of 2 symbols
byte=value*base
else:
byte+=value
command.append(byte) # byte complete
if len(command) == 0: # empty command
return ""
return command
def autoconvert_data(data):
"""automatically convert list of bytes data to ascii char on some
conditions, return None if the default printing method should be applied
The current condition is whether it contains enough printable characters, but it
might be user-configured in the future
"""
min_ascii=1.0
# minimal proportion of printable ascii characters in the data to
# automatically enable translation
len_few_errors=5
# length needed to ensure a low probability of converting to ascii
# non-ascii data
# len_few_errors == 5 => probably less than 1% of errors
ascii_chars=[chr(x) for x in data if 32 <= x <= 126 ]
# only printable ascii characters
if len(data) == 0:
return None
if float(len(ascii_chars)) / len(data) >= min_ascii:
out=[]
for c in data:
if 32 <= c <= 126:
out.append(chr(c))
else: # display unprintable as \xHH (not perfect but ok)
out.append('\\x'+pzero(hex(c)[2:]))
asciistr=''.join(out)
if len(asciistr) <= len_few_errors:
# still probable that data is not ascii data => print both
asciistr+=" "+str([pzero(hex(x)[2:]) for x in ans])
return asciistr
else: # not enough evidence to print it in ascii
return None
def normal_hex_output(ans, sw1, sw2):
"""Format answer and the two status words nicely"""
data=autoconvert_data(ans)
if data is None:
data="["+(' '.join([pzero(hex(x)[2:]) for x in ans]))+"]"
else:
data="[ "+data+" ]"
return data+" "+pzero(hex(sw1)[2:])+" "+pzero(hex(sw2)[2:])
def remove_comments(ustr, comment_pattern='#.*'):
"""deletes any commented part of the string. Accepts None to tolerate
EOFi
Interesting patterns may be:
- "#(.|\n)*" to suppress comment further than any newline present
- "/\*(.|\n)*?\*/" to non greedily remove /*...*/ style comments spanned over
multiple lines
"""
if ustr is None: # EOF
return None
m=re.search(comment_pattern, ustr)
if m:
return ustr[:m.start()]+ustr[m.end():]
else:
return ustr
#+++ history utils +++
# from python docs (readline)
# need readline, atexit
# os might be useful for ~ expansion os.path.expanduser
def init_history(histfile):
readline.parse_and_bind("tab: complete")
if hasattr(readline, "read_history_file"):
try:
readline.read_history_file(histfile)
except IOError:
print "unable to read history file: "+histfile
atexit.register(save_history, histfile)
def save_history(histfile):
try:
readline.write_history_file(histfile)
except IOError:
print "unable to save history in "+histfile
#+++ misc utils +++
def escape_backslashes(string):
"""escapes every backslash present in the string
you might want to use this to make a string become a re pattern for itself :)
"""
escape_if_backslash=lambda x: x == '\\' and "\\\\" or x
return ''.join([escape_if_backslash(x) for x in string])
def pzero(x):
""" pushes "0" in front of string if it's length is 1"""
return len(x)==1 and "0"+x or x
#=== USER INPUT TREATMENT AND EXECUTION
class fun_loop_creator:
"""this class provides a function which will treat the user input in the
loop: fun_usrinput
The rest are helper functions
"""
READER_NULL="No Reader"
# self.curreader == READER_NULL indicates that no actual reader is in use
def __init__(self):
self.curreader=None
self.s=None
self.reset()
self.command_acc="" # empty unterminated command
# error detection
errorchain = []
errorchain = [ErrorCheckingChain(errorchain, ISO7816_9ErrorChecker())]
errorchain = [ErrorCheckingChain(errorchain, ISO7816_8ErrorChecker())]
errorchain = [ErrorCheckingChain(errorchain, ISO7816_4ErrorChecker())]
self.errorchain=errorchain
# readline history
histfile=os.path.expanduser('~/.scriptim_history')
try:
init_history(histfile)
except NameError:
pass
def reset(self, reader=None):
"""scans for readers and renew the connection with the current reader,
if still present. If no connection could be established, self.s is None.
Calling this with no arguments, or None make this function attempt to renew the
connection with the previous reader, or ask the user for one either if there was
no previous reader or if it is not present anymore.
Calling it with a reader creates a new connection with
that reader, or ask the user for one if given reader is not present."""
if self.s is not None: # already had a connection
reader_plugged(self.curreader, False)
self.s.close()
self.s=None
# take given reader or previous reader
curreader=reader or self.curreader
readers=safe_list_readers()
if len(readers) == 0:
print "no readers present. Smartcard commands are not sent."
curreader=self.READER_NULL
elif curreader is None or not reader_plugged(curreader, False)\
and not str(reader) ==self.READER_NULL: # BUG pyscard=> str()
if len(readers) == 1:
curreader=readers[0]
print "Using only present reader "+str(curreader)
else:
curreader=selector(readers, 0)[1]
if curreader is not None and reader_plugged(curreader, False):
self.s=smartcard.Session(curreader)
self.curreader=curreader
def change_reader(self):
"""Propose to the user to select a reader or no reader, close the
current connection and open a new one with another reader"""
readers=safe_list_readers()
readers.append(self.READER_NULL)
if str(self.curreader) == self.READER_NULL or \
not reader_plugged(self.curreader, False): # str => BUG pyscard
i=len(readers)-1
else: # current reader is currently plugged.
i=readers[:-1].index(self.curreader) # compensate BUG in pyscard
curreader=selector(readers, i)[1]
self.reset(curreader)
def fun_usrinput(self, ustr):
"""Parse and execute a line of input
we return the string displayed by the cli, or None when we receive a
commands that should trigger an exit of current shell.
"""
try:
ustr=remove_comments(ustr)
if self.check_exit(ustr):
if self.s is not None:
reader_plugged(self.curreader)
self.s.close() # close connection
self.s=None
return None
if len(ustr) >= 1 and ustr[-1] == '\\': # continuation on multiple lines
self.command_acc+=ustr[:-1]
return ""
else:
ustr=self.command_acc+ustr
self.command_acc=""
if len(ustr.split()) == 0: # empty command
return ""
# reset, changereader commands
word_list=ustr.split()
if "reset" == word_list[0]:
self.reset()
return "...Done"
if "changereader" == word_list[0]:
self.change_reader()
return "...Current reader: "+str(self.curreader)
# normal commands (sent to smartcard reader)
command = normal_hex_input(ustr)
if isinstance(command, str): # error or no command
return command
if self.s is not None:
if len(command) < 4: # 4 mandatory bytes in APDUs
return "Invalid APDU: [CLA, INS, P1, P2] bytes are mandatory"
reader_plugged(self.curreader)
ans, sw1, sw2 = self.s.sendCommandAPDU(command)
try: # error diagnosis. Excepts if there is an error
self.errorchain[0](ans, sw1, sw2)
except SWException, e:
error_diagnosis=str(e)
else:
error_diagnosis=""
return normal_hex_output(ans, sw1, sw2) + " " + error_diagnosis
else: # no connection
return "No connection : command was not sent"
except ReaderAbsentException, e:
# self.s.close() would except here
self.s=None
return str(e)
def check_exit(self, ustr):
"""Returns whether the current command line is an exit command"""
if ustr is None:
command=None
else:
words=ustr.split()
command=len(words) > 0 and words[0] or ""
if command in ["quit", "exit", None]:
return True
return False
def usage():
print """scriptim.py [option]
scriptim.py Copyright (C) 2011 Bernard Paulus; use option --license for more.
Options
-h
--help \t: print this help and exit
--license\t: print information about the license
More help can be found in the README.txt file"""
def license():
print """
scriptim Copyright (C) 2011 Bernard Paulus
This program comes with ABSOLUTELY NO WARRANTY; for details see LICENSE.txt
This is free software, and you are welcome to redistribute it
under certain conditions; see LICENSE.txt for details.
If LICENSE.txt is not present, refer to the GNU General Public License
Version 3 available at <http://www.gnu.org/licenses/>.
"""
def main():
try:
opts, args = getopt.getopt(sys.argv[1:], "h", ["help", "license"])
except getopt.GetoptError, err:
# print help information and exit:
print str(err) # will print something like "option -a not recognized"
usage()
sys.exit(2)
for o, arg in opts:
if o in ("-h", "--help"):
usage()
sys.exit()
elif o == "--license":
license()
sys.exit()
else:
assert False, "unhandled option"
print "scriptim.py Copyright (C) 2011 Bernard Paulus; use option --license\
for more."
c = fun_loop_creator()
try:
command_loop( c.fun_usrinput)
except BaseException:
try:
if c is not None and c.s is not None:
c.s.close()
except AttributeError:
pass
raise
return 0
if __name__ == "__main__":
sys.exit(main())