aboutsummaryrefslogtreecommitdiffstats
path: root/src/demo_client.rb
blob: 06c2400ac09a594c994e0814e44c38132d1ce654 (plain)
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
#!/usr/bin/env ruby
# This programm will create a client which can be used to test servers
require 'lib/client'
require 'lib/apdu'

#=================
#== client type ==
#=================

# wich IO to use
client_io = :tcp
# the IO itself
io = nil
# create IO
case client_io
when :tcp
  require 'socket'
  host = "localhost"
  port = 1337
  io = TCPSocket.open(host,port)
when :bt
  require 'bluetooth_client'
  #sudo gem install serialport (http://rubygems.org/gems/serialport)
  require 'rubygems'
  require 'serialport'
=begin
to monitor bluetooth traffic
sudo aptitude install bluez-hcidump
sudo hcidump -x -i hci0 rfcomm
=end
  bt = BluetoothClient.new
  # using SerialPort because reading the File does not work (have to find right stty options)
  io = SerialPort.new(bt.connect)
else
  raise "please defined which client to use"
end

#===============
#== constants ==
#===============

# to debug the program
# shows APDU IO
DEBUG = true
# the verbosity from common
VERBOSE = 0

# APDU constants (TS 102.221 10.1.2)
# SIM Class code (TS 51.011 9.2)
CLASS = 0xA0
# add the address (2 bytes) to the select command (TS 51.011 9.2.1)
SELECT = [CLASS, 0xA4, 0x00, 0x00, 0x02]
# get the response after a select (TS 51.011 9.1)
# add the length (P3) to get the information (= SW2 after SELECT)
GET_RESPONSE = [CLASS, 0xC0, 0x00, 0x00]
STATUS = [CLASS, 0xF2, 0x00, 0x00]
# add the length (P3) to have complete command
READ_BINARY = [CLASS,0xB0]
READ_RECORD = [CLASS,0xB2]
UPDATE_RECORD = [CLASS,0xDC]
CHV1 = [CLASS,0x20,0x00,0x01,0x08]
A38 = [CLASS,0x88,0x00,0x00,0x10]

# file address (TS 51.011 10.7, page 105)
MF = [0x3F,0x00]
  EF_ICCID = [0x2F,0xE2]
  DF_GSM = [0x7F,0x20]
    EF_IMSI = [0x6F,0x07] # TS 51.011 10.3.2
  DF_TELECOM = [0x7F,0x10]
    EF_MSISDN = [0x6F,0x40] # TS 51.011 10.5.5

#=========================
#== additionnal methods ==
#=========================

# transform binary string into readable hex string
class String
  def to_hex_disp
    to_return = ""
    each_byte do |b|
      to_return += b.to_s(16).rjust(2,"0")
      to_return += " "
    end
    return to_return[0..-2].upcase
  end

  def to_hex
    to_return = ""
    each_byte do |b|
      to_return += b.to_s(16).rjust(2,"0")
    end
    return "0x"+(to_return.downcase)
  end

  def char_at(index)
    i=0
    each_char do |c|
      if i==index then
        return c
      else
        i+=1
      end
    end
    return nil
  end
end

# reverse the nibbles of each byte
class Array
  # print the nibbles (often BCD)
  # - padding : the 0xf can be ignored (used as padding in BCD)
  def nibble_str(padding=false)
    # get nibble representation
    to_return = collect { |b| (b&0x0F).to_s(16)+(b>>4).to_s(16) }
    to_return = to_return.join
    # remove the padding
    to_return.gsub!('f',"") if padding
    return to_return
  end

  def to_hex_disp
    to_return = ""
    each do |b|
      to_return += b.to_s(16).rjust(2,"0")
      to_return += " "
    end
    return to_return[0..-2].upcase
  end

  def to_hex
    to_return = ""
    each do |b|
      to_return += b.to_s(16).rjust(2,"0")
    end
    return "0x"+(to_return.downcase)
  end
end

#=============
#== methods ==
#=============

# send APDU (byte array) to card
# returns [response,sw1,sw2]
def transmit (apdu)

  # send APDU
  puts "< "+apdu.to_hex_disp if DEBUG
  resp = @client.apdu(apdu)
  puts "> "+resp.to_hex_disp if DEBUG

  # parse response
  response = resp[0..-3]
  sw1 = resp[-2]
  sw2 = resp[-1]
  sw_check(sw1,sw2)

  return response,sw1,sw2
end

# check if there is an error
# TS 51.011 9.4
def sw_check(sw1,sw2)

  # verb for the exception
  head = "SW error. "
  category = ""
  sw = " (#{sw1.to_s(16).rjust(2,'0')},#{sw2.to_s(16).rjust(2,'0')})"
  error = nil

  case sw1
  when 0x94
    category = "referencing management"
    case sw2
    when 0x00
      error = "no EF selected"
    when 0x02
      error = "out of range (invalid address)"
    when 0x04
      error = "file ID not found/pattern not found"
    when 0x08
      error = "file is inconsistent with the command"
    else
      error = "unknown"
    end
  when 0x98
    if sw2==0x04 then
      error = "not allowed or wrong PIN"
    else
      error = "security error"
    end
  when 0x6B
    error = "incorrect P1 or P2"
  when 0x67
    category = "application independent errors"
    error = "incorrect P3"
  else
    if sw1!=0x9F and sw1!=0x90 then
      error = "unknown response"
    end
  end

  raise head+category+" : "+error+sw if error
end

# select a file. returns the response
def select(file)
  # select file
  response, sw1, sw2 = transmit(SELECT+file)
  # get response
  response, sw1, sw2 = transmit(GET_RESPONSE+[sw2])

  return response
end

#==========
#== main ==
#==========

@client = Client.new(io,VERBOSE)
@client.start
@client.connect
atr = @client.atr
puts atr ? "ATR : #{atr.to_hex_disp}" :  "could not get ATR"
# select MF
transmit(GET_RESPONSE+[0x1a])
select(MF)
@client.disconnect

# close client_io
case client_io
when :tcp
  io.close
when :bt
  io.close
  bt.close
end