#include <err.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <strings.h>
#include <unistd.h>
#include <errno.h>
#include <sys/usb/clients/ccid/uccid.h>
static const uint8_t yk_req[] = {
0x00, 0xa4, 0x04, 0x00, 0x07, 0xa0, 0x00, 0x00, 0x05, 0x27, 0x20, 0x01
};
int
main(int argc, char *argv[])
{
int fd, ret;
uccid_cmd_icc_modify_t uci;
uccid_cmd_txn_begin_t begin;
uccid_cmd_status_t ucs;
uint8_t buf[UCCID_APDU_SIZE_MAX];
if (argc != 2) {
errx(EXIT_FAILURE, "missing required ccid path");
}
if ((fd = open(argv[1], O_RDONLY)) < 0) {
err(EXIT_FAILURE, "failed to open %s", argv[1]);
}
bzero(&begin, sizeof (begin));
begin.uct_version = UCCID_CURRENT_VERSION;
if (ioctl(fd, UCCID_CMD_TXN_BEGIN, &begin) == 0) {
errx(EXIT_FAILURE, "didn't fail to issue begin ioctl");
}
if ((ret = write(fd, yk_req, sizeof (yk_req))) != -1) {
errx(EXIT_FAILURE, "didn't fail to write data");
}
if (errno != EBADF) {
err(EXIT_FAILURE, "wrong errno for failed write, "
"expected EBADF");
}
if ((ret = read(fd, buf, sizeof (buf))) != -1) {
errx(EXIT_FAILURE, "didn't fail to read data");
}
if (errno != EACCES) {
err(EXIT_FAILURE, "wrong errno for failed read, "
"expected EACCES");
}
bzero(&ucs, sizeof (ucs));
ucs.ucs_version = UCCID_CURRENT_VERSION;
if ((ret = ioctl(fd, UCCID_CMD_STATUS, &ucs)) != 0) {
err(EXIT_FAILURE, "failed to get status");
}
bzero(&uci, sizeof (uci));
uci.uci_version = UCCID_CURRENT_VERSION;
uci.uci_action = UCCID_ICC_POWER_OFF;
if ((ret = ioctl(fd, UCCID_CMD_ICC_MODIFY, &uci)) == 0) {
errx(EXIT_FAILURE, "didn't fail to power off ICC");
}
if (errno != EBADF) {
err(EXIT_FAILURE, "wrong errno for failed write, "
"expected EBADF");
}
return (0);
}