1 /* divert-scd.c - divert operations to the scdaemon
2 * Copyright (C) 2002, 2003, 2009 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
32 #include "sexp-parse.h"
36 ask_for_card (ctrl_t ctrl
, const unsigned char *shadow_info
, char **r_kid
)
42 char *want_sn
, *want_kid
;
47 rc
= parse_shadow_info (shadow_info
, &want_sn
, &want_kid
);
51 /* We assume that a 20 byte serial number is a standard one which
52 has the property to have a zero in the last nibble (Due to BCD
53 representation). We don't display this '0' because it may
55 want_sn_displen
= strlen (want_sn
);
56 if (want_sn_displen
== 20 && want_sn
[19] == '0')
61 rc
= agent_card_serialno (ctrl
, &serialno
);
64 log_debug ("detected card with S/N %s\n", serialno
);
65 i
= strcmp (serialno
, want_sn
);
72 return 0; /* yes, we have the correct card */
75 else if (gpg_err_code (rc
) == GPG_ERR_CARD_NOT_PRESENT
)
77 log_debug ("no card present\n");
83 log_error ("error accesing card: %s\n", gpg_strerror (rc
));
91 no_card
? "Please insert the card with serial number"
92 : "Please remove the current card and "
93 "insert the one with serial number",
94 want_sn_displen
, want_sn
) < 0)
100 rc
= agent_get_confirmation (ctrl
, desc
, NULL
, NULL
);
114 /* Put the DIGEST into an DER encoded container and return it in R_VAL. */
116 encode_md_for_card (const unsigned char *digest
, size_t digestlen
, int algo
,
117 unsigned char **r_val
, size_t *r_len
)
119 unsigned char *frame
;
120 unsigned char asn
[100];
127 if (!algo
|| gcry_md_test_algo (algo
))
128 return gpg_error (GPG_ERR_DIGEST_ALGO
);
129 if (gcry_md_algo_info (algo
, GCRYCTL_GET_ASNOID
, asn
, &asnlen
))
131 log_error ("no object identifier for algo %d\n", algo
);
132 return gpg_error (GPG_ERR_INTERNAL
);
135 frame
= xtrymalloc (asnlen
+ digestlen
);
137 return out_of_core ();
138 memcpy (frame
, asn
, asnlen
);
139 memcpy (frame
+asnlen
, digest
, digestlen
);
141 log_printhex ("encoded hash:", frame
, asnlen
+digestlen
);
144 *r_len
= asnlen
+digestlen
;
149 /* Callback used to ask for the PIN which should be set into BUF. The
150 buf has been allocated by the caller and is of size MAXBUF which
151 includes the terminating null. The function should return an UTF-8
152 string with the passphrase, the buffer may optionally be padded
153 with arbitrary characters.
155 INFO gets displayed as part of a generic string. However if the
156 first character of INFO is a vertical bar all up to the next
157 verical bar are considered flags and only everything after the
158 second vertical bar gets displayed as the full prompt.
162 'N' = New PIN, this requests a second prompt to repeat the
163 PIN. If the PIN is not correctly repeated it starts from
165 'A' = The PIN is an Admin PIN, SO-PIN or alike.
166 'P' = The PIN is a PUK (Personal Unblocking Key).
167 'R' = The PIN is a Reset Code.
171 "|AN|Please enter the new security officer's PIN"
173 The text "Please ..." will get displayed and the flags 'A' and 'N'
177 getpin_cb (void *opaque
, const char *info
, char *buf
, size_t maxbuf
)
179 struct pin_entry_info_s
*pi
;
181 ctrl_t ctrl
= opaque
;
182 const char *ends
, *s
;
187 const char *again_text
= NULL
;
188 const char *prompt
= "PIN";
190 if (buf
&& maxbuf
< 2)
191 return gpg_error (GPG_ERR_INV_VALUE
);
193 /* Parse the flags. */
194 if (info
&& *info
=='|' && (ends
=strchr (info
+1, '|')))
196 for (s
=info
+1; s
< ends
; s
++)
199 prompt
= _("Admin PIN");
202 /* TRANSLATORS: A PUK is the Personal Unblocking Code
203 used to unblock a PIN. */
211 prompt
= _("Reset Code");
218 else if (info
&& *info
== '|')
219 log_debug ("pin_cb called without proper PIN info hack\n");
221 /* If BUF has been passed as NULL, we are in keypad mode: The
222 callback opens the popup and immediatley returns. */
225 if (maxbuf
== 0) /* Close the pinentry. */
227 agent_popup_message_stop (ctrl
);
230 else if (maxbuf
== 1) /* Open the pinentry. */
236 if ( asprintf (&desc
,
237 _("%s%%0A%%0AUse the reader's keypad for input."),
239 rc
= gpg_error_from_syserror ();
242 rc
= agent_popup_message_start (ctrl
, desc
, NULL
);
247 rc
= agent_popup_message_start (ctrl
, NULL
, NULL
);
250 rc
= gpg_error (GPG_ERR_INV_VALUE
);
254 /* FIXME: keep PI and TRIES in OPAQUE. Frankly this is a whole
255 mess because we should call the card's verify function from the
256 pinentry check pin CB. */
258 pi
= gcry_calloc_secure (1, sizeof (*pi
) + maxbuf
+ 10);
260 return gpg_error_from_syserror ();
261 pi
->max_length
= maxbuf
-1;
262 pi
->min_digits
= 0; /* we want a real passphrase */
268 rc
= agent_askpin (ctrl
, info
, prompt
, again_text
, pi
);
272 struct pin_entry_info_s
*pi2
;
273 pi2
= gcry_calloc_secure (1, sizeof (*pi
) + maxbuf
+ 10);
276 rc
= gpg_error_from_syserror ();
280 pi2
->max_length
= maxbuf
-1;
282 pi2
->max_digits
= 16;
284 rc
= agent_askpin (ctrl
,
286 _("Repeat this Reset Code"):
288 _("Repeat this PUK"):
289 _("Repeat this PIN")),
291 if (!rc
&& strcmp (pi
->pin
, pi2
->pin
))
293 again_text
= (resetcode
?
294 N_("Reset Code not correctly repeated; try again"):
296 N_("PUK not correctly repeated; try again"):
297 N_("PIN not correctly repeated; try again"));
308 if ( asprintf (&desc
,
309 _("Please enter the PIN%s%s%s to unlock the card"),
314 rc
= agent_askpin (ctrl
, desc
?desc
:info
, prompt
, NULL
, pi
);
320 strncpy (buf
, pi
->pin
, maxbuf
-1);
331 divert_pksign (ctrl_t ctrl
,
332 const unsigned char *digest
, size_t digestlen
, int algo
,
333 const unsigned char *shadow_info
, unsigned char **r_sig
)
338 unsigned char *sigval
= NULL
;
340 rc
= ask_for_card (ctrl
, shadow_info
, &kid
);
344 if (algo
== MD_USER_TLS_MD5SHA1
)
346 int save
= ctrl
->use_auth_call
;
347 ctrl
->use_auth_call
= 1;
348 rc
= agent_card_pksign (ctrl
, kid
, getpin_cb
, ctrl
,
349 digest
, digestlen
, &sigval
, &siglen
);
350 ctrl
->use_auth_call
= save
;
357 rc
= encode_md_for_card (digest
, digestlen
, algo
, &data
, &ndata
);
360 rc
= agent_card_pksign (ctrl
, kid
, getpin_cb
, ctrl
,
361 data
, ndata
, &sigval
, &siglen
);
375 /* Decrypt the the value given asn an S-expression in CIPHER using the
376 key identified by SHADOW_INFO and return the plaintext in an
377 allocated buffer in R_BUF. */
379 divert_pkdecrypt (ctrl_t ctrl
,
380 const unsigned char *cipher
,
381 const unsigned char *shadow_info
,
382 char **r_buf
, size_t *r_len
)
386 const unsigned char *s
;
388 const unsigned char *ciphertext
;
389 size_t ciphertextlen
;
395 return gpg_error (GPG_ERR_INV_SEXP
);
399 return gpg_error (GPG_ERR_INV_SEXP
);
400 if (!smatch (&s
, n
, "enc-val"))
401 return gpg_error (GPG_ERR_UNKNOWN_SEXP
);
403 return gpg_error (GPG_ERR_UNKNOWN_SEXP
);
407 return gpg_error (GPG_ERR_INV_SEXP
);
408 if (!smatch (&s
, n
, "rsa"))
409 return gpg_error (GPG_ERR_UNSUPPORTED_ALGORITHM
);
411 return gpg_error (GPG_ERR_UNKNOWN_SEXP
);
415 return gpg_error (GPG_ERR_INV_SEXP
);
416 if (!smatch (&s
, n
, "a"))
417 return gpg_error (GPG_ERR_UNKNOWN_SEXP
);
420 return gpg_error (GPG_ERR_UNKNOWN_SEXP
);
424 rc
= ask_for_card (ctrl
, shadow_info
, &kid
);
428 rc
= agent_card_pkdecrypt (ctrl
, kid
, getpin_cb
, ctrl
,
429 ciphertext
, ciphertextlen
,
430 &plaintext
, &plaintextlen
);
434 *r_len
= plaintextlen
;
442 divert_generic_cmd (ctrl_t ctrl
, const char *cmdline
, void *assuan_context
)
444 return agent_card_scd (ctrl
, cmdline
, getpin_cb
, ctrl
, assuan_context
);