From: Alon Levy <alevy@redhat.com>
To: Jes Sorensen <Jes.Sorensen@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 5/7] ccid: add ccid-card-emulated device
Date: Thu, 17 Mar 2011 12:59:53 +0200 [thread overview]
Message-ID: <20110317105953.GS7413@playa.tlv.redhat.com> (raw)
In-Reply-To: <20110317105416.GR7413@playa.tlv.redhat.com>
On Thu, Mar 17, 2011 at 12:54:16PM +0200, Alon Levy wrote:
sorry for the double review of the review, nothing new here.
> On Mon, Mar 14, 2011 at 04:41:02PM +0100, Jes Sorensen wrote:
> > On 02/23/11 12:20, Alon Levy wrote:
> > > diff --git a/hw/ccid-card-emulated.c b/hw/ccid-card-emulated.c
> > > new file mode 100644
> > > index 0000000..bd84d45
> > > --- /dev/null
> > > +++ b/hw/ccid-card-emulated.c
> > > @@ -0,0 +1,599 @@
> > > +/*
> > > + * CCID Card Device. Emulated card.
> > > + *
> > > + * Copyright (c) 2011 Red Hat.
> > > + * Written by Alon Levy.
> > > + *
> > > + * This code is licenced under the GNU LGPL, version 2 or later.
> > > + */
> > > +
> > > +/*
> > > + * It can be used to provide access to the local hardware in a non exclusive
> > > + * way, or it can use certificates. It requires the usb-ccid bus.
> > > + *
> > > + * Usage 1: standard, mirror hardware reader+card:
> > > + * qemu .. -usb -device usb-ccid -device ccid-card-emulated
> > > + *
> > > + * Usage 2: use certificates, no hardware required
> > > + * one time: create the certificates:
> > > + * for i in 1 2 3; do
> > > + * certutil -d /etc/pki/nssdb -x -t "CT,CT,CT" -S -s "CN=user$i" -n user$i
> > > + * done
> > > + * qemu .. -usb -device usb-ccid \
> > > + * -device ccid-card-emulated,cert1=user1,cert2=user2,cert3=user3
> > > + *
> > > + * If you use a non default db for the certificates you can specify it using
> > > + * the db parameter.
> > > + */
> > > +
> > > +#include <pthread.h>
> >
> > qemu-thread.h
> ok, fixing.
>
> >
> > > +static const char *emul_event_to_string(uint32_t emul_event)
> > > +{
> > > + switch (emul_event) {
> > > + case EMUL_READER_INSERT: return "EMUL_READER_INSERT";
> > > + case EMUL_READER_REMOVE: return "EMUL_READER_REMOVE";
> > > + case EMUL_CARD_INSERT: return "EMUL_CARD_INSERT";
> > > + case EMUL_CARD_REMOVE: return "EMUL_CARD_REMOVE";
> > > + case EMUL_GUEST_APDU: return "EMUL_GUEST_APDU";
> > > + case EMUL_RESPONSE_APDU: return "EMUL_RESPONSE_APDU";
> > > + case EMUL_ERROR: return "EMUL_ERROR";
> >
> > YUCK!
> can we turn down the caps / disgust statements? I understand this
> is a personal affront to you somehow? can we settle this at dawn
> tommorrow?
>
> >
> > No multi statements on a single line!
> >
> > > +#define MAX_ATR_SIZE 40
> > > +struct EmulatedState {
> > > + CCIDCardState base;
> > > + uint8_t debug;
> > > + char *backend_str;
> > > + uint32_t backend;
> > > + char *cert1;
> > > + char *cert2;
> > > + char *cert3;
> > > + char *db;
> > > + uint8_t atr[MAX_ATR_SIZE];
> > > + uint8_t atr_length;
> > > + QSIMPLEQ_HEAD(event_list, EmulEvent) event_list;
> > > + pthread_mutex_t event_list_mutex;
> > > + VReader *reader;
> > > + QSIMPLEQ_HEAD(guest_apdu_list, EmulEvent) guest_apdu_list;
> > > + pthread_mutex_t vreader_mutex; /* and guest_apdu_list mutex */
> > > + pthread_mutex_t handle_apdu_mutex;
> > > + pthread_cond_t handle_apdu_cond;
> > > + int pipe[2];
> > > + int quit_apdu_thread;
> > > + pthread_mutex_t apdu_thread_quit_mutex;
> > > + pthread_cond_t apdu_thread_quit_cond;
> > > +};
> >
> > Bad struct packing and wrong thread types.
> will use qemu-thread. that's what you mean by wrong thread types, right?
> s/pthread_thread_t/QemuThread/ etc. (Cond, Mutex)
>
> >
> > > +static void emulated_push_type(EmulatedState *card, uint32_t type)
> > > +{
> > > + EmulEvent *event = (EmulEvent *)malloc(sizeof(EmulEvent));
> >
> > qemu_malloc()
> yep, fixing.
>
> >
> > > + assert(event);
> > > + event->p.gen.type = type;
> > > + emulated_push_event(card, event);
> > > +}
> > > +
> > > +static void emulated_push_error(EmulatedState *card, uint64_t code)
> > > +{
> > > + EmulEvent *event = (EmulEvent *)malloc(sizeof(EmulEvent));
> >
> > qemu_malloc()
> fixing.
>
> >
> > > + assert(event);
> > > + event->p.error.type = EMUL_ERROR;
> > > + event->p.error.code = code;
> > > + emulated_push_event(card, event);
> > > +}
> > > +
> > > +static void emulated_push_data_type(EmulatedState *card, uint32_t type,
> > > + const uint8_t *data, uint32_t len)
> > > +{
> > > + EmulEvent *event = (EmulEvent *)malloc(sizeof(EmulEvent) + len);
> >
> > qemu_malloc()
> fixing.
>
> >
> > > +static void pipe_read(void *opaque)
> > > +{
> > > + EmulatedState *card = opaque;
> > > + EmulEvent *event, *next;
> > > + char dummy;
> > > + int len;
> > > +
> > > + do {
> > > + len = read(card->pipe[0], &dummy, sizeof(dummy));
> > > + } while (len == sizeof(dummy));
> >
> > Shouldn't you check error codes here?
> yes, my bad.
>
> >
> > Jes
>
next prev parent reply other threads:[~2011-03-17 11:00 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-23 11:20 [Qemu-devel] [PATCH v20 0/7] usb-ccid Alon Levy
2011-02-23 11:20 ` [Qemu-devel] [PATCH 1/7] usb-ccid: add CCID bus Alon Levy
2011-03-14 13:54 ` Jes Sorensen
2011-03-14 14:07 ` Daniel P. Berrange
2011-03-14 14:12 ` Anthony Liguori
2011-03-16 9:15 ` Alon Levy
2011-03-16 9:26 ` Jes Sorensen
2011-02-23 11:20 ` [Qemu-devel] [PATCH 2/7] introduce libcacard/vscard_common.h Alon Levy
2011-03-14 14:01 ` Jes Sorensen
2011-03-14 14:51 ` Alon Levy
2011-03-14 14:52 ` Alon Levy
2011-03-14 15:50 ` Jes Sorensen
2011-03-14 16:31 ` Alon Levy
2011-02-23 11:20 ` [Qemu-devel] [PATCH 3/7] ccid: add passthru card device Alon Levy
2011-03-14 14:04 ` Jes Sorensen
2011-03-14 14:53 ` Alon Levy
2011-03-14 15:51 ` Jes Sorensen
2011-02-23 11:20 ` [Qemu-devel] [PATCH 4/7] libcacard: initial commit Alon Levy
2011-03-14 15:20 ` Jes Sorensen
2011-03-14 16:40 ` Alon Levy
2011-03-15 12:42 ` Jes Sorensen
2011-03-15 13:14 ` Alon Levy
2011-03-15 13:40 ` Jes Sorensen
2011-03-15 14:09 ` Alon Levy
2011-03-15 13:45 ` Anthony Liguori
2011-03-15 14:23 ` Alon Levy
2011-03-16 8:23 ` Jes Sorensen
2011-03-16 8:40 ` Alon Levy
2011-03-16 8:42 ` Jes Sorensen
2011-03-15 13:44 ` Anthony Liguori
2011-03-15 14:25 ` Alon Levy
2011-03-15 14:51 ` Jes Sorensen
2011-03-15 14:56 ` Anthony Liguori
2011-03-15 14:59 ` Jes Sorensen
2011-03-15 15:14 ` Alon Levy
2011-03-16 8:26 ` Jes Sorensen
2011-03-15 14:55 ` Anthony Liguori
2011-03-17 13:36 ` Alon Levy
2011-02-23 11:20 ` [Qemu-devel] [PATCH 5/7] ccid: add ccid-card-emulated device Alon Levy
2011-03-14 15:41 ` Jes Sorensen
2011-03-14 16:44 ` Alon Levy
2011-03-14 17:11 ` Jes Sorensen
2011-03-17 10:54 ` Alon Levy
2011-03-17 10:59 ` Alon Levy [this message]
2011-03-17 14:25 ` Jes Sorensen
2011-02-23 11:20 ` [Qemu-devel] [PATCH 6/7] ccid: add docs Alon Levy
2011-03-14 15:41 ` Jes Sorensen
2011-02-23 11:20 ` [Qemu-devel] [PATCH 7/7] ccid: configure: improve --enable-smartcard flags Alon Levy
2011-03-14 15:44 ` Jes Sorensen
2011-03-06 10:50 ` [Qemu-devel] [PATCH v20 0/7] usb-ccid Alon Levy
-- strict thread matches above, loose matches on Subject: below --
2011-02-07 16:34 [Qemu-devel] [PATCH 0/7] usb-ccid (v19) Alon Levy
2011-02-07 16:35 ` [Qemu-devel] [PATCH 5/7] ccid: add ccid-card-emulated device Alon Levy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110317105953.GS7413@playa.tlv.redhat.com \
--to=alevy@redhat.com \
--cc=Jes.Sorensen@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).