Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lib: Add support for not returning PIN when using bio verification #509

Merged
merged 3 commits into from
Sep 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 62 additions & 21 deletions lib/ykpiv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1561,6 +1561,58 @@ static ykpiv_rc _cache_mgm_key(ykpiv_state *state, unsigned const char *key, siz
#endif
}

static ykpiv_rc _verify_pin_apdu(char *pin, size_t *p_pin_len, bool verify_spin, APDU *apdu) {
if (p_pin_len && (*p_pin_len > CB_PIN_MAX)) {
return YKPIV_SIZE_ERROR;
}

apdu->st.ins = YKPIV_INS_VERIFY;
apdu->st.p1 = 0x00;
apdu->st.p2 = 0x80;
apdu->st.lc = pin ? 0x08 : 0x00;
if (pin) {
if (p_pin_len && (*p_pin_len > 0)) {
memcpy(apdu->st.data, pin, *p_pin_len);
if (*p_pin_len < CB_PIN_MAX) {
memset(apdu->st.data + *p_pin_len, 0xff, CB_PIN_MAX - *p_pin_len);
}
} else if (verify_spin && p_pin_len) {
apdu->st.data[0] = 0x01;
apdu->st.data[1] = (uint8_t)*p_pin_len;
memcpy(apdu->st.data + 2, pin, *p_pin_len);
}
}
return YKPIV_OK;
}

static ykpiv_rc _verify_bio_apdu(char *pin, size_t *p_pin_len, bool verify_spin, APDU *apdu) {

if (verify_spin && (!pin || !p_pin_len || *p_pin_len != 16)) {
return YKPIV_WRONG_PIN;
}

apdu->st.ins = YKPIV_INS_VERIFY;
apdu->st.p1 = 0x00;
apdu->st.p2 = 0x96;
apdu->st.lc = verify_spin ? (uint8_t)(*p_pin_len + 2) : 0x02;
if (pin) {
if (verify_spin && p_pin_len) {
apdu->st.data[0] = 0x01;
apdu->st.data[1] = (uint8_t) *p_pin_len;
memcpy(apdu->st.data + 2, pin, *p_pin_len);
} else {
memcpy(apdu->st.data, "\x02\x00", 2);
}
} else {
if (verify_spin) {
apdu->st.lc = 0;
} else {
notdpate marked this conversation as resolved.
Show resolved Hide resolved
memcpy(apdu->st.data, "\x03\x00", 2);
}
}
return YKPIV_OK;
}

static ykpiv_rc _ykpiv_verify(ykpiv_state *state, char *pin, size_t *p_pin_len, bool bio, bool verify_spin) {

if (!bio && p_pin_len && (*p_pin_len > CB_PIN_MAX)) {
Expand All @@ -1572,25 +1624,10 @@ static ykpiv_rc _ykpiv_verify(ykpiv_state *state, char *pin, size_t *p_pin_len,
}

APDU apdu = {0};
apdu.st.ins = YKPIV_INS_VERIFY;
apdu.st.p1 = 0x00;
apdu.st.p2 = bio ? 0x96 : 0x80;
apdu.st.lc = bio ? (verify_spin ? (uint8_t)(*p_pin_len + 2) : 0x02) : (pin ? 0x08 : 0x00);
if (pin) {
if (!bio && p_pin_len && (*p_pin_len > 0)) {
memcpy(apdu.st.data, pin, *p_pin_len);
if (*p_pin_len < CB_PIN_MAX) {
memset(apdu.st.data + *p_pin_len, 0xff, CB_PIN_MAX - *p_pin_len);
}
}
else if (verify_spin && p_pin_len) {
apdu.st.data[0] = 0x01;
apdu.st.data[1] = (uint8_t)*p_pin_len;
memcpy(apdu.st.data + 2, pin, *p_pin_len);
}
else if (bio) {
memcpy(apdu.st.data, "\x02\x00", 2);
}
if(bio) {
_verify_bio_apdu(pin, p_pin_len, verify_spin, &apdu);
} else {
_verify_pin_apdu(pin, p_pin_len, verify_spin, &apdu);
}

int sw = 0;
Expand Down Expand Up @@ -1643,9 +1680,13 @@ static ykpiv_rc _ykpiv_verify(ykpiv_state *state, char *pin, size_t *p_pin_len,

static ykpiv_rc _ykpiv_verify_select(ykpiv_state *state, char *pin, size_t* p_pin_len, int *tries, bool force_select, bool bio, bool verify_spin) {
ykpiv_rc res = YKPIV_OK;
if (YKPIV_OK != (res = _ykpiv_begin_transaction(state))) return res;
if (YKPIV_OK != (res = _ykpiv_begin_transaction(state))) {
return res;
}
if (force_select) {
if (YKPIV_OK != (res = _ykpiv_ensure_application_selected(state))) goto Cleanup;
if (YKPIV_OK != (res = _ykpiv_ensure_application_selected(state))) {
goto Cleanup;
}
}
res = _ykpiv_verify(state, pin, p_pin_len, bio, verify_spin);
if(tries) *tries = state->tries;
Expand Down
Loading