blob: 721e021fb516f73ef40e1df97ce8f3e8d5b78afc [file] [log] [blame]
Ben Lindstrom3133dbb2001-07-04 05:35:00 +00001/*
2 * Copyright (c) 2001 Markus Friedl. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#ifdef SMARTCARD
26#include "includes.h"
Damien Miller694be4b2001-07-14 12:13:26 +100027RCSID("$OpenBSD: scard.c,v 1.5 2001/07/04 23:13:09 markus Exp $");
Ben Lindstrom3133dbb2001-07-04 05:35:00 +000028
29#include <openssl/engine.h>
30#include <sectok.h>
31
32#include "key.h"
33#include "log.h"
34#include "xmalloc.h"
35#include "scard.h"
36
37#define CLA_SSH 0x05
38#define INS_DECRYPT 0x10
39#define INS_GET_KEYLENGTH 0x20
40#define INS_GET_PUBKEY 0x30
41#define INS_GET_RESPONSE 0xc0
42
43#define MAX_BUF_SIZE 256
44
45static int sc_fd = -1;
Damien Miller694be4b2001-07-14 12:13:26 +100046static int sc_reader_num = -1;
Ben Lindstrom3133dbb2001-07-04 05:35:00 +000047static int cla = 0x00; /* class */
48
49/* interface to libsectok */
50
51static int
Damien Miller694be4b2001-07-14 12:13:26 +100052sc_open(void)
Ben Lindstrom3133dbb2001-07-04 05:35:00 +000053{
54 u_char atr[256];
55 int sw;
56
57 if (sc_fd >= 0)
58 return sc_fd;
Ben Lindstrom3133dbb2001-07-04 05:35:00 +000059
Damien Miller694be4b2001-07-14 12:13:26 +100060 sc_fd = sectok_open(sc_reader_num, 0, &sw);
Ben Lindstrom3133dbb2001-07-04 05:35:00 +000061 if (sc_fd < 0) {
Damien Miller694be4b2001-07-14 12:13:26 +100062 error("sectok_open failed: %s", sectok_get_sw(sw));
63 return -1;
Ben Lindstrom3133dbb2001-07-04 05:35:00 +000064 }
65 if (sectok_reset(sc_fd, 0, atr, &sw) <= 0) {
66 error("sectok_reset failed: %s", sectok_get_sw(sw));
67 sc_fd = -1;
68 return sc_fd;
69 }
Damien Miller694be4b2001-07-14 12:13:26 +100070
Ben Lindstrom3133dbb2001-07-04 05:35:00 +000071 debug("sc_open ok %d", sc_fd);
72 return sc_fd;
73}
74
75static int
76sc_enable_applet(void)
77{
78 u_char contID[2], aid[MAX_BUF_SIZE];
79 int i, len, sw, aid_len;
80
81 len = sw = 0;
82 contID[0] = 0x77;
83 contID[1] = 0x78;
84
85 if (sectok_selectfile(sc_fd, cla, root_fid, &sw) < 0) {
86 error("sectok_selectfile root_fid failed: %s",
87 sectok_get_sw(sw));
Damien Miller694be4b2001-07-14 12:13:26 +100088 sc_close();
Ben Lindstrom3133dbb2001-07-04 05:35:00 +000089 return -1;
90 }
91 if (sectok_selectfile(sc_fd, cla, contID, &sw) < 0) {
92 error("sectok_selectfile failed: %s", sectok_get_sw(sw));
Damien Miller694be4b2001-07-14 12:13:26 +100093 sc_close();
Ben Lindstrom3133dbb2001-07-04 05:35:00 +000094 return -1;
95 }
96 /* send appled id */
97 for (i = 0; i < sizeof(aid); i++)
98 aid[i] = 0x77;
99 aid_len = 5;
100 sectok_apdu(sc_fd, cla, 0xa4, 0x04, 0, aid_len, aid, 0, NULL, &sw);
101 if (!sectok_swOK(sw)) {
102 error("sectok_apdu failed: %s", sectok_get_sw(sw));
Damien Miller694be4b2001-07-14 12:13:26 +1000103 sc_close();
104 return -1;
105 }
106 return 0;
107}
108
109static int
110sc_init(void)
111{
112 if (sc_open() < 0) {
113 error("sc_open failed");
114 return -1;
115 }
116 if (sc_enable_applet() < 0) {
117 error("sc_enable_applet failed");
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000118 return -1;
119 }
120 return 0;
121}
122
123static int
124sc_read_pubkey(Key * k)
125{
126 u_char buf[2], *n;
127 char *p;
128 int len, sw;
129
130 len = sw = 0;
131
Damien Miller694be4b2001-07-14 12:13:26 +1000132 if (sc_fd < 0)
133 if (sc_init() < 0)
134 return -1;
135
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000136 /* get key size */
137 sectok_apdu(sc_fd, CLA_SSH, INS_GET_KEYLENGTH, 0, 0, 0, NULL,
138 sizeof(buf), buf, &sw);
139 if (!sectok_swOK(sw)) {
140 error("could not obtain key length: %s", sectok_get_sw(sw));
Damien Miller694be4b2001-07-14 12:13:26 +1000141 sc_close();
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000142 return -1;
143 }
144 len = (buf[0] << 8) | buf[1];
145 len /= 8;
146 debug("INS_GET_KEYLENGTH: len %d sw %s", len, sectok_get_sw(sw));
147
148 n = xmalloc(len);
149 /* get n */
150 sectok_apdu(sc_fd, CLA_SSH, INS_GET_PUBKEY, 0, 0, 0, NULL, len, n, &sw);
151 if (!sectok_swOK(sw)) {
152 error("could not obtain public key: %s", sectok_get_sw(sw));
153 xfree(n);
154 return -1;
155 }
156 debug("INS_GET_KEYLENGTH: sw %s", sectok_get_sw(sw));
157
158 if (BN_bin2bn(n, len, k->rsa->n) == NULL) {
159 error("c_read_pubkey: BN_bin2bn failed");
160 xfree(n);
Damien Miller694be4b2001-07-14 12:13:26 +1000161 sc_close();
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000162 return -1;
163 }
164 xfree(n);
165
166 /* currently the java applet just stores 'n' */
167 if (!BN_set_word(k->rsa->e, 35)) {
168 error("c_read_pubkey: BN_set_word(e, 35) failed");
169 return -1;
170 }
171
172 p = key_fingerprint(k, SSH_FP_MD5, SSH_FP_HEX);
173 debug("fingerprint %d %s", key_size(k), p);
174 xfree(p);
175
176 return 0;
177}
178
179/* private key operations */
180
181static int
182sc_private_decrypt(int flen, u_char *from, u_char *to, RSA *rsa, int padding)
183{
184 u_char *padded = NULL;
185 int sw, len, olen;
186
187 debug("sc_private_decrypt called");
188
189 olen = len = sw = 0;
Damien Miller694be4b2001-07-14 12:13:26 +1000190 if (sc_fd < 0)
191 if (sc_init() < 0)
192 goto err;
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000193 if (padding != RSA_PKCS1_PADDING)
194 goto err;
195
196 len = BN_num_bytes(rsa->n);
197 padded = xmalloc(len);
198
199 sectok_apdu(sc_fd, CLA_SSH, INS_DECRYPT, 0, 0, len, from, 0, NULL, &sw);
200 if (!sectok_swOK(sw)) {
201 error("sc_private_decrypt: INS_DECRYPT failed: %s",
202 sectok_get_sw(sw));
Damien Miller694be4b2001-07-14 12:13:26 +1000203 sc_close();
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000204 goto err;
205 }
206 sectok_apdu(sc_fd, CLA_SSH, INS_GET_RESPONSE, 0, 0, 0, NULL,
207 len, padded, &sw);
208 if (!sectok_swOK(sw)) {
209 error("sc_private_decrypt: INS_GET_RESPONSE failed: %s",
210 sectok_get_sw(sw));
Damien Miller694be4b2001-07-14 12:13:26 +1000211 sc_close();
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000212 goto err;
213 }
214 olen = RSA_padding_check_PKCS1_type_2(to, len, padded + 1, len - 1,
215 len);
216err:
217 if (padded)
218 xfree(padded);
219 return olen;
220}
221
222static int
223sc_private_encrypt(int flen, u_char *from, u_char *to, RSA *rsa, int padding)
224{
225 u_char *padded = NULL;
226 int sw, len;
227
228 len = sw = 0;
Damien Miller694be4b2001-07-14 12:13:26 +1000229 if (sc_fd < 0)
230 if (sc_init() < 0)
231 goto err;
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000232 if (padding != RSA_PKCS1_PADDING)
233 goto err;
234
235 debug("sc_private_encrypt called");
236 len = BN_num_bytes(rsa->n);
237 padded = xmalloc(len);
238
239 if (RSA_padding_add_PKCS1_type_1(padded, len, from, flen) <= 0) {
240 error("RSA_padding_add_PKCS1_type_1 failed");
241 goto err;
242 }
243 sectok_apdu(sc_fd, CLA_SSH, INS_DECRYPT, 0, 0, len, padded, 0, NULL, &sw);
244 if (!sectok_swOK(sw)) {
245 error("sc_private_decrypt: INS_DECRYPT failed: %s",
246 sectok_get_sw(sw));
Damien Miller694be4b2001-07-14 12:13:26 +1000247 sc_close();
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000248 goto err;
249 }
250 sectok_apdu(sc_fd, CLA_SSH, INS_GET_RESPONSE, 0, 0, 0, NULL,
251 len, to, &sw);
252 if (!sectok_swOK(sw)) {
253 error("sc_private_decrypt: INS_GET_RESPONSE failed: %s",
254 sectok_get_sw(sw));
Damien Miller694be4b2001-07-14 12:13:26 +1000255 sc_close();
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000256 goto err;
257 }
258err:
259 if (padded)
260 xfree(padded);
261 return len;
262}
263
264/* engine for overloading private key operations */
265
266static ENGINE *smart_engine = NULL;
267static RSA_METHOD smart_rsa =
268{
269 "sectok",
270 NULL,
271 NULL,
272 NULL,
273 NULL,
274 NULL,
275 NULL,
276 NULL,
277 NULL,
278 0,
279 NULL,
280};
281
282ENGINE *
283sc_get_engine(void)
284{
285 RSA_METHOD *def;
286
287 def = RSA_get_default_openssl_method();
288
289 /* overload */
290 smart_rsa.rsa_priv_enc = sc_private_encrypt;
291 smart_rsa.rsa_priv_dec = sc_private_decrypt;
292
293 /* just use the OpenSSL version */
294 smart_rsa.rsa_pub_enc = def->rsa_pub_enc;
295 smart_rsa.rsa_pub_dec = def->rsa_pub_dec;
296 smart_rsa.rsa_mod_exp = def->rsa_mod_exp;
297 smart_rsa.bn_mod_exp = def->bn_mod_exp;
298 smart_rsa.init = def->init;
299 smart_rsa.finish = def->finish;
300 smart_rsa.flags = def->flags;
301 smart_rsa.app_data = def->app_data;
302 smart_rsa.rsa_sign = def->rsa_sign;
303 smart_rsa.rsa_verify = def->rsa_verify;
304
305 smart_engine = ENGINE_new();
306
307 ENGINE_set_id(smart_engine, "sectok");
308 ENGINE_set_name(smart_engine, "libsectok");
309 ENGINE_set_RSA(smart_engine, &smart_rsa);
310 ENGINE_set_DSA(smart_engine, DSA_get_default_openssl_method());
311 ENGINE_set_DH(smart_engine, DH_get_default_openssl_method());
312 ENGINE_set_RAND(smart_engine, RAND_SSLeay());
313 ENGINE_set_BN_mod_exp(smart_engine, BN_mod_exp);
314
315 return smart_engine;
316}
317
Damien Miller694be4b2001-07-14 12:13:26 +1000318void
319sc_close(void)
320{
321 if (sc_fd >= 0) {
322 sectok_close(sc_fd);
323 sc_fd = -1;
324 }
325}
326
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000327Key *
Damien Miller694be4b2001-07-14 12:13:26 +1000328sc_get_key(int num)
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000329{
330 Key *k;
331
Damien Miller694be4b2001-07-14 12:13:26 +1000332 sc_reader_num = num;
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000333 k = key_new(KEY_RSA);
334 if (k == NULL) {
335 return NULL;
336 }
337 if (sc_read_pubkey(k) < 0) {
338 error("sc_read_pubkey failed");
339 key_free(k);
340 return NULL;
341 }
342 return k;
Damien Miller694be4b2001-07-14 12:13:26 +1000343 sc_close();
Ben Lindstrom3133dbb2001-07-04 05:35:00 +0000344}
345#endif