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
));
92 ? _("Please insert the card with serial number")
93 : _("Please remove the current card and "
94 "insert the one with serial number"),
95 want_sn_displen
, want_sn
) < 0)
101 rc
= agent_get_confirmation (ctrl
, desc
, NULL
, NULL
, 0);
115 /* Put the DIGEST into an DER encoded container and return it in R_VAL. */
117 encode_md_for_card (const unsigned char *digest
, size_t digestlen
, int algo
,
118 unsigned char **r_val
, size_t *r_len
)
120 unsigned char *frame
;
121 unsigned char asn
[100];
128 if (!algo
|| gcry_md_test_algo (algo
))
129 return gpg_error (GPG_ERR_DIGEST_ALGO
);
130 if (gcry_md_algo_info (algo
, GCRYCTL_GET_ASNOID
, asn
, &asnlen
))
132 log_error ("no object identifier for algo %d\n", algo
);
133 return gpg_error (GPG_ERR_INTERNAL
);
136 frame
= xtrymalloc (asnlen
+ digestlen
);
138 return out_of_core ();
139 memcpy (frame
, asn
, asnlen
);
140 memcpy (frame
+asnlen
, digest
, digestlen
);
142 log_printhex ("encoded hash:", frame
, asnlen
+digestlen
);
145 *r_len
= asnlen
+digestlen
;
150 /* Callback used to ask for the PIN which should be set into BUF. The
151 buf has been allocated by the caller and is of size MAXBUF which
152 includes the terminating null. The function should return an UTF-8
153 string with the passphrase, the buffer may optionally be padded
154 with arbitrary characters.
156 INFO gets displayed as part of a generic string. However if the
157 first character of INFO is a vertical bar all up to the next
158 verical bar are considered flags and only everything after the
159 second vertical bar gets displayed as the full prompt.
163 'N' = New PIN, this requests a second prompt to repeat the
164 PIN. If the PIN is not correctly repeated it starts from
166 'A' = The PIN is an Admin PIN, SO-PIN or alike.
167 'P' = The PIN is a PUK (Personal Unblocking Key).
168 'R' = The PIN is a Reset Code.
172 "|AN|Please enter the new security officer's PIN"
174 The text "Please ..." will get displayed and the flags 'A' and 'N'
178 getpin_cb (void *opaque
, const char *info
, char *buf
, size_t maxbuf
)
180 struct pin_entry_info_s
*pi
;
182 ctrl_t ctrl
= opaque
;
183 const char *ends
, *s
;
188 const char *again_text
= NULL
;
189 const char *prompt
= "PIN";
191 if (buf
&& maxbuf
< 2)
192 return gpg_error (GPG_ERR_INV_VALUE
);
194 /* Parse the flags. */
195 if (info
&& *info
=='|' && (ends
=strchr (info
+1, '|')))
197 for (s
=info
+1; s
< ends
; s
++)
200 prompt
= _("Admin PIN");
203 /* TRANSLATORS: A PUK is the Personal Unblocking Code
204 used to unblock a PIN. */
212 prompt
= _("Reset Code");
219 else if (info
&& *info
== '|')
220 log_debug ("pin_cb called without proper PIN info hack\n");
222 /* If BUF has been passed as NULL, we are in keypad mode: The
223 callback opens the popup and immediatley returns. */
226 if (maxbuf
== 0) /* Close the pinentry. */
228 agent_popup_message_stop (ctrl
);
231 else if (maxbuf
== 1) /* Open the pinentry. */
237 if ( asprintf (&desc
,
238 _("%s%%0A%%0AUse the reader's keypad for input."),
240 rc
= gpg_error_from_syserror ();
243 rc
= agent_popup_message_start (ctrl
, desc
, NULL
);
248 rc
= agent_popup_message_start (ctrl
, NULL
, NULL
);
251 rc
= gpg_error (GPG_ERR_INV_VALUE
);
255 /* FIXME: keep PI and TRIES in OPAQUE. Frankly this is a whole
256 mess because we should call the card's verify function from the
257 pinentry check pin CB. */
259 pi
= gcry_calloc_secure (1, sizeof (*pi
) + maxbuf
+ 10);
261 return gpg_error_from_syserror ();
262 pi
->max_length
= maxbuf
-1;
263 pi
->min_digits
= 0; /* we want a real passphrase */
269 rc
= agent_askpin (ctrl
, info
, prompt
, again_text
, pi
);
273 struct pin_entry_info_s
*pi2
;
274 pi2
= gcry_calloc_secure (1, sizeof (*pi
) + maxbuf
+ 10);
277 rc
= gpg_error_from_syserror ();
281 pi2
->max_length
= maxbuf
-1;
283 pi2
->max_digits
= 16;
285 rc
= agent_askpin (ctrl
,
287 _("Repeat this Reset Code"):
289 _("Repeat this PUK"):
290 _("Repeat this PIN")),
292 if (!rc
&& strcmp (pi
->pin
, pi2
->pin
))
294 again_text
= (resetcode
?
295 N_("Reset Code not correctly repeated; try again"):
297 N_("PUK not correctly repeated; try again"):
298 N_("PIN not correctly repeated; try again"));
309 if ( asprintf (&desc
,
310 _("Please enter the PIN%s%s%s to unlock the card"),
315 rc
= agent_askpin (ctrl
, desc
?desc
:info
, prompt
, NULL
, pi
);
321 strncpy (buf
, pi
->pin
, maxbuf
-1);
332 divert_pksign (ctrl_t ctrl
,
333 const unsigned char *digest
, size_t digestlen
, int algo
,
334 const unsigned char *shadow_info
, unsigned char **r_sig
)
339 unsigned char *sigval
= NULL
;
341 rc
= ask_for_card (ctrl
, shadow_info
, &kid
);
345 if (algo
== MD_USER_TLS_MD5SHA1
)
347 int save
= ctrl
->use_auth_call
;
348 ctrl
->use_auth_call
= 1;
349 rc
= agent_card_pksign (ctrl
, kid
, getpin_cb
, ctrl
,
350 digest
, digestlen
, &sigval
, &siglen
);
351 ctrl
->use_auth_call
= save
;
358 rc
= encode_md_for_card (digest
, digestlen
, algo
, &data
, &ndata
);
361 rc
= agent_card_pksign (ctrl
, kid
, getpin_cb
, ctrl
,
362 data
, ndata
, &sigval
, &siglen
);
376 /* Decrypt the the value given asn an S-expression in CIPHER using the
377 key identified by SHADOW_INFO and return the plaintext in an
378 allocated buffer in R_BUF. */
380 divert_pkdecrypt (ctrl_t ctrl
,
381 const unsigned char *cipher
,
382 const unsigned char *shadow_info
,
383 char **r_buf
, size_t *r_len
)
387 const unsigned char *s
;
389 const unsigned char *ciphertext
;
390 size_t ciphertextlen
;
396 return gpg_error (GPG_ERR_INV_SEXP
);
400 return gpg_error (GPG_ERR_INV_SEXP
);
401 if (!smatch (&s
, n
, "enc-val"))
402 return gpg_error (GPG_ERR_UNKNOWN_SEXP
);
404 return gpg_error (GPG_ERR_UNKNOWN_SEXP
);
408 return gpg_error (GPG_ERR_INV_SEXP
);
409 if (!smatch (&s
, n
, "rsa"))
410 return gpg_error (GPG_ERR_UNSUPPORTED_ALGORITHM
);
412 return gpg_error (GPG_ERR_UNKNOWN_SEXP
);
416 return gpg_error (GPG_ERR_INV_SEXP
);
417 if (!smatch (&s
, n
, "a"))
418 return gpg_error (GPG_ERR_UNKNOWN_SEXP
);
421 return gpg_error (GPG_ERR_UNKNOWN_SEXP
);
425 rc
= ask_for_card (ctrl
, shadow_info
, &kid
);
429 rc
= agent_card_pkdecrypt (ctrl
, kid
, getpin_cb
, ctrl
,
430 ciphertext
, ciphertextlen
,
431 &plaintext
, &plaintextlen
);
435 *r_len
= plaintextlen
;
443 divert_generic_cmd (ctrl_t ctrl
, const char *cmdline
, void *assuan_context
)
445 return agent_card_scd (ctrl
, cmdline
, getpin_cb
, ctrl
, assuan_context
);