From 2d348b60ab8c22791b56f291600954abd716a791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20H=E1=BB=93ng=20Qu=C3=A2n?= Date: Fri, 22 Mar 2013 17:37:16 +0700 Subject: [PATCH 03/26] OpenPGP: Include private DO to filesystem at driver initialization. In old implementation, the DOs which their access is restricted by PIN (like DOs 0101 -> 0104) were excluded from the fake filesystem, leading to that we cannot read their data later, even if we verified PIN. --- src/libopensc/card-openpgp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: opensc-20150513/src/libopensc/card-openpgp.c =================================================================== --- opensc-20150513.orig/src/libopensc/card-openpgp.c +++ opensc-20150513/src/libopensc/card-openpgp.c @@ -365,7 +365,7 @@ pgp_init(sc_card_t *card) /* Populate MF - add matching blobs listed in the pgp_objects table. */ for (info = priv->pgp_objects; (info != NULL) && (info->id > 0); info++) { - if (((info->access & READ_MASK) == READ_ALWAYS) && + if (((info->access & READ_MASK) != READ_NEVER) && (info->get_fn != NULL)) { child = pgp_new_blob(card, priv->mf, info->id, sc_file_new());