Message ID | 1461000376-2888-2-git-send-email-stefanb@linux.vnet.ibm.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Mon, Apr 18, 2016 at 01:26:13PM -0400, Stefan Berger wrote: > From: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > > The final thing preventing this was the way the sysfs files were > attached to the pdev. Follow the approach developed for ppi and move > the sysfs files to the chip->dev with symlinks from the pdev > for compatibility. Everything in the core now sanely uses container_of > to get the chip. Can you give me a quick recap why this patch was mandatory to make the patch set work? Which regression in the earlier versions of the patch set this fixes? /Jarkko > Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> > --- > drivers/char/tpm/tpm-chip.c | 73 ++++++++++++++++++++++++++++------------ > drivers/char/tpm/tpm-interface.c | 7 ++-- > drivers/char/tpm/tpm-sysfs.c | 61 ++++++++++++++------------------- > drivers/char/tpm/tpm.h | 10 +++--- > 4 files changed, 84 insertions(+), 67 deletions(-) > > diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c > index 5bc530c..7e2c9cf 100644 > --- a/drivers/char/tpm/tpm-chip.c > +++ b/drivers/char/tpm/tpm-chip.c > @@ -170,9 +170,7 @@ struct tpm_chip *tpm_chip_alloc(struct device *dev, > chip->dev.class = tpm_class; > chip->dev.release = tpm_dev_release; > chip->dev.parent = dev; > -#ifdef CONFIG_ACPI > chip->dev.groups = chip->groups; > -#endif > > if (chip->dev_num == 0) > chip->dev.devt = MKDEV(MISC_MAJOR, TPM_MINOR); > @@ -276,14 +274,10 @@ static void tpm_del_char_device(struct tpm_chip *chip) > > static int tpm1_chip_register(struct tpm_chip *chip) > { > - int rc; > - > if (chip->flags & TPM_CHIP_FLAG_TPM2) > return 0; > > - rc = tpm_sysfs_add_device(chip); > - if (rc) > - return rc; > + tpm_sysfs_add_device(chip); > > chip->bios_dir = tpm_bios_log_setup(dev_name(&chip->dev)); > > @@ -297,10 +291,50 @@ static void tpm1_chip_unregister(struct tpm_chip *chip) > > if (chip->bios_dir) > tpm_bios_log_teardown(chip->bios_dir); > +} > + > +static void tpm_del_legacy_sysfs(struct tpm_chip *chip) > +{ > + struct attribute **i; > + > + if (chip->flags & TPM_CHIP_FLAG_TPM2) > + return; > > - tpm_sysfs_del_device(chip); > + sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); > + > + for (i = chip->groups[0]->attrs; *i != NULL; ++i) > + sysfs_remove_link(&chip->dev.parent->kobj, (*i)->name); > } > > +/* For compatibility with legacy sysfs paths we provide symlinks from the > + * parent dev directory to selected names within the tpm chip directory. Old > + * kernel versions created these files directly under the parent. > + */ > +static int tpm_add_legacy_sysfs(struct tpm_chip *chip) > +{ > + struct attribute **i; > + int rc; > + > + if (chip->flags & TPM_CHIP_FLAG_TPM2) > + return 0; > + > + rc = __compat_only_sysfs_link_entry_to_kobj( > + &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); > + if (rc && rc != -ENOENT) > + return rc; > + > + /* All the names from tpm-sysfs */ > + for (i = chip->groups[0]->attrs; *i != NULL; ++i) { > + rc = __compat_only_sysfs_link_entry_to_kobj( > + &chip->dev.parent->kobj, &chip->dev.kobj, (*i)->name); > + if (rc) { > + tpm_del_legacy_sysfs(chip); > + return rc; > + } > + } > + > + return 0; > +} > /* > * tpm_chip_register() - create a character device for the TPM chip > * @chip: TPM chip to use. > @@ -323,24 +357,20 @@ int tpm_chip_register(struct tpm_chip *chip) > tpm_add_ppi(chip); > > rc = tpm_add_char_device(chip); > - if (rc) > - goto out_err; > + if (rc) { > + tpm1_chip_unregister(chip); > + return rc; > + } > > chip->flags |= TPM_CHIP_FLAG_REGISTERED; > > - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) { > - rc = __compat_only_sysfs_link_entry_to_kobj( > - &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); > - if (rc && rc != -ENOENT) { > - tpm_chip_unregister(chip); > - return rc; > - } > + rc = tpm_add_legacy_sysfs(chip); > + if (rc) { > + tpm_chip_unregister(chip); > + return rc; > } > > return 0; > -out_err: > - tpm1_chip_unregister(chip); > - return rc; > } > EXPORT_SYMBOL_GPL(tpm_chip_register); > > @@ -362,8 +392,7 @@ void tpm_chip_unregister(struct tpm_chip *chip) > if (!(chip->flags & TPM_CHIP_FLAG_REGISTERED)) > return; > > - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) > - sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); > + tpm_del_legacy_sysfs(chip); > > tpm1_chip_unregister(chip); > tpm_del_char_device(chip); > diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c > index 7cba092..080dade 100644 > --- a/drivers/char/tpm/tpm-interface.c > +++ b/drivers/char/tpm/tpm-interface.c > @@ -432,12 +432,11 @@ static const struct tpm_input_header tpm_getcap_header = { > .ordinal = TPM_ORD_GET_CAP > }; > > -ssize_t tpm_getcap(struct device *dev, __be32 subcap_id, cap_t *cap, > +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, > const char *desc) > { > struct tpm_cmd_t tpm_cmd; > int rc; > - struct tpm_chip *chip = dev_get_drvdata(dev); > > tpm_cmd.header.in = tpm_getcap_header; > if (subcap_id == CAP_VERSION_1_1 || subcap_id == CAP_VERSION_1_2) { > @@ -935,7 +934,7 @@ static struct tpm_input_header savestate_header = { > */ > int tpm_pm_suspend(struct device *dev) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > struct tpm_cmd_t cmd; > int rc, try; > > @@ -996,7 +995,7 @@ EXPORT_SYMBOL_GPL(tpm_pm_suspend); > */ > int tpm_pm_resume(struct device *dev) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > if (chip == NULL) > return -ENODEV; > diff --git a/drivers/char/tpm/tpm-sysfs.c b/drivers/char/tpm/tpm-sysfs.c > index a7c3473..b46cf70 100644 > --- a/drivers/char/tpm/tpm-sysfs.c > +++ b/drivers/char/tpm/tpm-sysfs.c > @@ -36,7 +36,7 @@ static ssize_t pubek_show(struct device *dev, struct device_attribute *attr, > int i, rc; > char *str = buf; > > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > tpm_cmd.header.in = tpm_readpubek_header; > err = tpm_transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE, > @@ -92,9 +92,9 @@ static ssize_t pcrs_show(struct device *dev, struct device_attribute *attr, > ssize_t rc; > int i, j, num_pcrs; > char *str = buf; > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > - rc = tpm_getcap(dev, TPM_CAP_PROP_PCR, &cap, > + rc = tpm_getcap(chip, TPM_CAP_PROP_PCR, &cap, > "attempting to determine the number of PCRS"); > if (rc) > return 0; > @@ -119,8 +119,8 @@ static ssize_t enabled_show(struct device *dev, struct device_attribute *attr, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, > - "attempting to determine the permanent enabled state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, > + "attempting to determine the permanent enabled state"); > if (rc) > return 0; > > @@ -135,8 +135,8 @@ static ssize_t active_show(struct device *dev, struct device_attribute *attr, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, > - "attempting to determine the permanent active state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, > + "attempting to determine the permanent active state"); > if (rc) > return 0; > > @@ -151,8 +151,8 @@ static ssize_t owned_show(struct device *dev, struct device_attribute *attr, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_PROP_OWNER, &cap, > - "attempting to determine the owner state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_PROP_OWNER, &cap, > + "attempting to determine the owner state"); > if (rc) > return 0; > > @@ -167,8 +167,8 @@ static ssize_t temp_deactivated_show(struct device *dev, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_VOL, &cap, > - "attempting to determine the temporary state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_VOL, &cap, > + "attempting to determine the temporary state"); > if (rc) > return 0; > > @@ -180,11 +180,12 @@ static DEVICE_ATTR_RO(temp_deactivated); > static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > char *buf) > { > + struct tpm_chip *chip = to_tpm_chip(dev); > cap_t cap; > ssize_t rc; > char *str = buf; > > - rc = tpm_getcap(dev, TPM_CAP_PROP_MANUFACTURER, &cap, > + rc = tpm_getcap(chip, TPM_CAP_PROP_MANUFACTURER, &cap, > "attempting to determine the manufacturer"); > if (rc) > return 0; > @@ -192,8 +193,8 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > be32_to_cpu(cap.manufacturer_id)); > > /* Try to get a TPM version 1.2 TPM_CAP_VERSION_INFO */ > - rc = tpm_getcap(dev, CAP_VERSION_1_2, &cap, > - "attempting to determine the 1.2 version"); > + rc = tpm_getcap(chip, CAP_VERSION_1_2, &cap, > + "attempting to determine the 1.2 version"); > if (!rc) { > str += sprintf(str, > "TCG version: %d.%d\nFirmware version: %d.%d\n", > @@ -203,7 +204,7 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > cap.tpm_version_1_2.revMinor); > } else { > /* Otherwise just use TPM_STRUCT_VER */ > - rc = tpm_getcap(dev, CAP_VERSION_1_1, &cap, > + rc = tpm_getcap(chip, CAP_VERSION_1_1, &cap, > "attempting to determine the 1.1 version"); > if (rc) > return 0; > @@ -222,7 +223,7 @@ static DEVICE_ATTR_RO(caps); > static ssize_t cancel_store(struct device *dev, struct device_attribute *attr, > const char *buf, size_t count) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > if (chip == NULL) > return 0; > > @@ -234,7 +235,7 @@ static DEVICE_ATTR_WO(cancel); > static ssize_t durations_show(struct device *dev, struct device_attribute *attr, > char *buf) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > if (chip->duration[TPM_LONG] == 0) > return 0; > @@ -251,7 +252,7 @@ static DEVICE_ATTR_RO(durations); > static ssize_t timeouts_show(struct device *dev, struct device_attribute *attr, > char *buf) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > return sprintf(buf, "%d %d %d %d [%s]\n", > jiffies_to_usecs(chip->timeout_a), > @@ -281,24 +282,12 @@ static const struct attribute_group tpm_dev_group = { > .attrs = tpm_dev_attrs, > }; > > -int tpm_sysfs_add_device(struct tpm_chip *chip) > +void tpm_sysfs_add_device(struct tpm_chip *chip) > { > - int err; > - err = sysfs_create_group(&chip->dev.parent->kobj, > - &tpm_dev_group); > - > - if (err) > - dev_err(&chip->dev, > - "failed to create sysfs attributes, %d\n", err); > - return err; > -} > - > -void tpm_sysfs_del_device(struct tpm_chip *chip) > -{ > - /* The sysfs routines rely on an implicit tpm_try_get_ops, this > - * function is called before ops is null'd and the sysfs core > - * synchronizes this removal so that no callbacks are running or can > - * run again > + /* The sysfs routines rely on an implicit tpm_try_get_ops, device_del > + * is called before ops is null'd and the sysfs core synchronizes this > + * removal so that no callbacks are running or can run again > */ > - sysfs_remove_group(&chip->dev.parent->kobj, &tpm_dev_group); > + WARN_ON(chip->groups_cnt != 0); > + chip->groups[chip->groups_cnt++] = &tpm_dev_group; > } > diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h > index 8bc6fb8..508e8e0 100644 > --- a/drivers/char/tpm/tpm.h > +++ b/drivers/char/tpm/tpm.h > @@ -168,9 +168,9 @@ struct tpm_chip { > > struct dentry **bios_dir; > > -#ifdef CONFIG_ACPI > - const struct attribute_group *groups[2]; > + const struct attribute_group *groups[3]; > unsigned int groups_cnt; > +#ifdef CONFIG_ACPI > acpi_handle acpi_dev_handle; > char ppi_version[TPM_PPI_VERSION_LEN + 1]; > #endif /* CONFIG_ACPI */ > @@ -471,7 +471,8 @@ extern dev_t tpm_devt; > extern const struct file_operations tpm_fops; > extern struct idr dev_nums_idr; > > -ssize_t tpm_getcap(struct device *, __be32, cap_t *, const char *); > +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, > + const char *desc); > ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf, > size_t bufsiz); > ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, int len, > @@ -496,8 +497,7 @@ extern struct tpm_chip *tpmm_chip_alloc(struct device *pdev, > extern int tpm_chip_register(struct tpm_chip *chip); > extern void tpm_chip_unregister(struct tpm_chip *chip); > > -int tpm_sysfs_add_device(struct tpm_chip *chip); > -void tpm_sysfs_del_device(struct tpm_chip *chip); > +void tpm_sysfs_add_device(struct tpm_chip *chip); > > int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf); > > -- > 2.4.3 > ------------------------------------------------------------------------------ Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
On 04/19/2016 06:12 AM, Jarkko Sakkinen wrote: > On Mon, Apr 18, 2016 at 01:26:13PM -0400, Stefan Berger wrote: >> From: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> >> >> The final thing preventing this was the way the sysfs files were >> attached to the pdev. Follow the approach developed for ppi and move >> the sysfs files to the chip->dev with symlinks from the pdev >> for compatibility. Everything in the core now sanely uses container_of >> to get the chip. > Can you give me a quick recap why this patch was mandatory to make the > patch set work? Which regression in the earlier versions of the patch > set this fixes? The below patch removes usage of dev_get_drvdata() for retrieving the chip. With Christophe's series dropping the priv field I now can use the drvdata to store proxy_dev rather than re-introducing the priv field in the chip structure. Besides that it doesn't seem necessary to use the drvdata field to get from the chip to the device if a simple container_of can do it. Stefan > > /Jarkko > >> Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> >> Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> >> --- >> drivers/char/tpm/tpm-chip.c | 73 ++++++++++++++++++++++++++++------------ >> drivers/char/tpm/tpm-interface.c | 7 ++-- >> drivers/char/tpm/tpm-sysfs.c | 61 ++++++++++++++------------------- >> drivers/char/tpm/tpm.h | 10 +++--- >> 4 files changed, 84 insertions(+), 67 deletions(-) >> >> diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c >> index 5bc530c..7e2c9cf 100644 >> --- a/drivers/char/tpm/tpm-chip.c >> +++ b/drivers/char/tpm/tpm-chip.c >> @@ -170,9 +170,7 @@ struct tpm_chip *tpm_chip_alloc(struct device *dev, >> chip->dev.class = tpm_class; >> chip->dev.release = tpm_dev_release; >> chip->dev.parent = dev; >> -#ifdef CONFIG_ACPI >> chip->dev.groups = chip->groups; >> -#endif >> >> if (chip->dev_num == 0) >> chip->dev.devt = MKDEV(MISC_MAJOR, TPM_MINOR); >> @@ -276,14 +274,10 @@ static void tpm_del_char_device(struct tpm_chip *chip) >> >> static int tpm1_chip_register(struct tpm_chip *chip) >> { >> - int rc; >> - >> if (chip->flags & TPM_CHIP_FLAG_TPM2) >> return 0; >> >> - rc = tpm_sysfs_add_device(chip); >> - if (rc) >> - return rc; >> + tpm_sysfs_add_device(chip); >> >> chip->bios_dir = tpm_bios_log_setup(dev_name(&chip->dev)); >> >> @@ -297,10 +291,50 @@ static void tpm1_chip_unregister(struct tpm_chip *chip) >> >> if (chip->bios_dir) >> tpm_bios_log_teardown(chip->bios_dir); >> +} >> + >> +static void tpm_del_legacy_sysfs(struct tpm_chip *chip) >> +{ >> + struct attribute **i; >> + >> + if (chip->flags & TPM_CHIP_FLAG_TPM2) >> + return; >> >> - tpm_sysfs_del_device(chip); >> + sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); >> + >> + for (i = chip->groups[0]->attrs; *i != NULL; ++i) >> + sysfs_remove_link(&chip->dev.parent->kobj, (*i)->name); >> } >> >> +/* For compatibility with legacy sysfs paths we provide symlinks from the >> + * parent dev directory to selected names within the tpm chip directory. Old >> + * kernel versions created these files directly under the parent. >> + */ >> +static int tpm_add_legacy_sysfs(struct tpm_chip *chip) >> +{ >> + struct attribute **i; >> + int rc; >> + >> + if (chip->flags & TPM_CHIP_FLAG_TPM2) >> + return 0; >> + >> + rc = __compat_only_sysfs_link_entry_to_kobj( >> + &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); >> + if (rc && rc != -ENOENT) >> + return rc; >> + >> + /* All the names from tpm-sysfs */ >> + for (i = chip->groups[0]->attrs; *i != NULL; ++i) { >> + rc = __compat_only_sysfs_link_entry_to_kobj( >> + &chip->dev.parent->kobj, &chip->dev.kobj, (*i)->name); >> + if (rc) { >> + tpm_del_legacy_sysfs(chip); >> + return rc; >> + } >> + } >> + >> + return 0; >> +} >> /* >> * tpm_chip_register() - create a character device for the TPM chip >> * @chip: TPM chip to use. >> @@ -323,24 +357,20 @@ int tpm_chip_register(struct tpm_chip *chip) >> tpm_add_ppi(chip); >> >> rc = tpm_add_char_device(chip); >> - if (rc) >> - goto out_err; >> + if (rc) { >> + tpm1_chip_unregister(chip); >> + return rc; >> + } >> >> chip->flags |= TPM_CHIP_FLAG_REGISTERED; >> >> - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) { >> - rc = __compat_only_sysfs_link_entry_to_kobj( >> - &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); >> - if (rc && rc != -ENOENT) { >> - tpm_chip_unregister(chip); >> - return rc; >> - } >> + rc = tpm_add_legacy_sysfs(chip); >> + if (rc) { >> + tpm_chip_unregister(chip); >> + return rc; >> } >> >> return 0; >> -out_err: >> - tpm1_chip_unregister(chip); >> - return rc; >> } >> EXPORT_SYMBOL_GPL(tpm_chip_register); >> >> @@ -362,8 +392,7 @@ void tpm_chip_unregister(struct tpm_chip *chip) >> if (!(chip->flags & TPM_CHIP_FLAG_REGISTERED)) >> return; >> >> - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) >> - sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); >> + tpm_del_legacy_sysfs(chip); >> >> tpm1_chip_unregister(chip); >> tpm_del_char_device(chip); >> diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c >> index 7cba092..080dade 100644 >> --- a/drivers/char/tpm/tpm-interface.c >> +++ b/drivers/char/tpm/tpm-interface.c >> @@ -432,12 +432,11 @@ static const struct tpm_input_header tpm_getcap_header = { >> .ordinal = TPM_ORD_GET_CAP >> }; >> >> -ssize_t tpm_getcap(struct device *dev, __be32 subcap_id, cap_t *cap, >> +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, >> const char *desc) >> { >> struct tpm_cmd_t tpm_cmd; >> int rc; >> - struct tpm_chip *chip = dev_get_drvdata(dev); >> >> tpm_cmd.header.in = tpm_getcap_header; >> if (subcap_id == CAP_VERSION_1_1 || subcap_id == CAP_VERSION_1_2) { >> @@ -935,7 +934,7 @@ static struct tpm_input_header savestate_header = { >> */ >> int tpm_pm_suspend(struct device *dev) >> { >> - struct tpm_chip *chip = dev_get_drvdata(dev); >> + struct tpm_chip *chip = to_tpm_chip(dev); >> struct tpm_cmd_t cmd; >> int rc, try; >> >> @@ -996,7 +995,7 @@ EXPORT_SYMBOL_GPL(tpm_pm_suspend); >> */ >> int tpm_pm_resume(struct device *dev) >> { >> - struct tpm_chip *chip = dev_get_drvdata(dev); >> + struct tpm_chip *chip = to_tpm_chip(dev); >> >> if (chip == NULL) >> return -ENODEV; >> diff --git a/drivers/char/tpm/tpm-sysfs.c b/drivers/char/tpm/tpm-sysfs.c >> index a7c3473..b46cf70 100644 >> --- a/drivers/char/tpm/tpm-sysfs.c >> +++ b/drivers/char/tpm/tpm-sysfs.c >> @@ -36,7 +36,7 @@ static ssize_t pubek_show(struct device *dev, struct device_attribute *attr, >> int i, rc; >> char *str = buf; >> >> - struct tpm_chip *chip = dev_get_drvdata(dev); >> + struct tpm_chip *chip = to_tpm_chip(dev); >> >> tpm_cmd.header.in = tpm_readpubek_header; >> err = tpm_transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE, >> @@ -92,9 +92,9 @@ static ssize_t pcrs_show(struct device *dev, struct device_attribute *attr, >> ssize_t rc; >> int i, j, num_pcrs; >> char *str = buf; >> - struct tpm_chip *chip = dev_get_drvdata(dev); >> + struct tpm_chip *chip = to_tpm_chip(dev); >> >> - rc = tpm_getcap(dev, TPM_CAP_PROP_PCR, &cap, >> + rc = tpm_getcap(chip, TPM_CAP_PROP_PCR, &cap, >> "attempting to determine the number of PCRS"); >> if (rc) >> return 0; >> @@ -119,8 +119,8 @@ static ssize_t enabled_show(struct device *dev, struct device_attribute *attr, >> cap_t cap; >> ssize_t rc; >> >> - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, >> - "attempting to determine the permanent enabled state"); >> + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, >> + "attempting to determine the permanent enabled state"); >> if (rc) >> return 0; >> >> @@ -135,8 +135,8 @@ static ssize_t active_show(struct device *dev, struct device_attribute *attr, >> cap_t cap; >> ssize_t rc; >> >> - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, >> - "attempting to determine the permanent active state"); >> + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, >> + "attempting to determine the permanent active state"); >> if (rc) >> return 0; >> >> @@ -151,8 +151,8 @@ static ssize_t owned_show(struct device *dev, struct device_attribute *attr, >> cap_t cap; >> ssize_t rc; >> >> - rc = tpm_getcap(dev, TPM_CAP_PROP_OWNER, &cap, >> - "attempting to determine the owner state"); >> + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_PROP_OWNER, &cap, >> + "attempting to determine the owner state"); >> if (rc) >> return 0; >> >> @@ -167,8 +167,8 @@ static ssize_t temp_deactivated_show(struct device *dev, >> cap_t cap; >> ssize_t rc; >> >> - rc = tpm_getcap(dev, TPM_CAP_FLAG_VOL, &cap, >> - "attempting to determine the temporary state"); >> + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_VOL, &cap, >> + "attempting to determine the temporary state"); >> if (rc) >> return 0; >> >> @@ -180,11 +180,12 @@ static DEVICE_ATTR_RO(temp_deactivated); >> static ssize_t caps_show(struct device *dev, struct device_attribute *attr, >> char *buf) >> { >> + struct tpm_chip *chip = to_tpm_chip(dev); >> cap_t cap; >> ssize_t rc; >> char *str = buf; >> >> - rc = tpm_getcap(dev, TPM_CAP_PROP_MANUFACTURER, &cap, >> + rc = tpm_getcap(chip, TPM_CAP_PROP_MANUFACTURER, &cap, >> "attempting to determine the manufacturer"); >> if (rc) >> return 0; >> @@ -192,8 +193,8 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, >> be32_to_cpu(cap.manufacturer_id)); >> >> /* Try to get a TPM version 1.2 TPM_CAP_VERSION_INFO */ >> - rc = tpm_getcap(dev, CAP_VERSION_1_2, &cap, >> - "attempting to determine the 1.2 version"); >> + rc = tpm_getcap(chip, CAP_VERSION_1_2, &cap, >> + "attempting to determine the 1.2 version"); >> if (!rc) { >> str += sprintf(str, >> "TCG version: %d.%d\nFirmware version: %d.%d\n", >> @@ -203,7 +204,7 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, >> cap.tpm_version_1_2.revMinor); >> } else { >> /* Otherwise just use TPM_STRUCT_VER */ >> - rc = tpm_getcap(dev, CAP_VERSION_1_1, &cap, >> + rc = tpm_getcap(chip, CAP_VERSION_1_1, &cap, >> "attempting to determine the 1.1 version"); >> if (rc) >> return 0; >> @@ -222,7 +223,7 @@ static DEVICE_ATTR_RO(caps); >> static ssize_t cancel_store(struct device *dev, struct device_attribute *attr, >> const char *buf, size_t count) >> { >> - struct tpm_chip *chip = dev_get_drvdata(dev); >> + struct tpm_chip *chip = to_tpm_chip(dev); >> if (chip == NULL) >> return 0; >> >> @@ -234,7 +235,7 @@ static DEVICE_ATTR_WO(cancel); >> static ssize_t durations_show(struct device *dev, struct device_attribute *attr, >> char *buf) >> { >> - struct tpm_chip *chip = dev_get_drvdata(dev); >> + struct tpm_chip *chip = to_tpm_chip(dev); >> >> if (chip->duration[TPM_LONG] == 0) >> return 0; >> @@ -251,7 +252,7 @@ static DEVICE_ATTR_RO(durations); >> static ssize_t timeouts_show(struct device *dev, struct device_attribute *attr, >> char *buf) >> { >> - struct tpm_chip *chip = dev_get_drvdata(dev); >> + struct tpm_chip *chip = to_tpm_chip(dev); >> >> return sprintf(buf, "%d %d %d %d [%s]\n", >> jiffies_to_usecs(chip->timeout_a), >> @@ -281,24 +282,12 @@ static const struct attribute_group tpm_dev_group = { >> .attrs = tpm_dev_attrs, >> }; >> >> -int tpm_sysfs_add_device(struct tpm_chip *chip) >> +void tpm_sysfs_add_device(struct tpm_chip *chip) >> { >> - int err; >> - err = sysfs_create_group(&chip->dev.parent->kobj, >> - &tpm_dev_group); >> - >> - if (err) >> - dev_err(&chip->dev, >> - "failed to create sysfs attributes, %d\n", err); >> - return err; >> -} >> - >> -void tpm_sysfs_del_device(struct tpm_chip *chip) >> -{ >> - /* The sysfs routines rely on an implicit tpm_try_get_ops, this >> - * function is called before ops is null'd and the sysfs core >> - * synchronizes this removal so that no callbacks are running or can >> - * run again >> + /* The sysfs routines rely on an implicit tpm_try_get_ops, device_del >> + * is called before ops is null'd and the sysfs core synchronizes this >> + * removal so that no callbacks are running or can run again >> */ >> - sysfs_remove_group(&chip->dev.parent->kobj, &tpm_dev_group); >> + WARN_ON(chip->groups_cnt != 0); >> + chip->groups[chip->groups_cnt++] = &tpm_dev_group; >> } >> diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h >> index 8bc6fb8..508e8e0 100644 >> --- a/drivers/char/tpm/tpm.h >> +++ b/drivers/char/tpm/tpm.h >> @@ -168,9 +168,9 @@ struct tpm_chip { >> >> struct dentry **bios_dir; >> >> -#ifdef CONFIG_ACPI >> - const struct attribute_group *groups[2]; >> + const struct attribute_group *groups[3]; >> unsigned int groups_cnt; >> +#ifdef CONFIG_ACPI >> acpi_handle acpi_dev_handle; >> char ppi_version[TPM_PPI_VERSION_LEN + 1]; >> #endif /* CONFIG_ACPI */ >> @@ -471,7 +471,8 @@ extern dev_t tpm_devt; >> extern const struct file_operations tpm_fops; >> extern struct idr dev_nums_idr; >> >> -ssize_t tpm_getcap(struct device *, __be32, cap_t *, const char *); >> +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, >> + const char *desc); >> ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf, >> size_t bufsiz); >> ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, int len, >> @@ -496,8 +497,7 @@ extern struct tpm_chip *tpmm_chip_alloc(struct device *pdev, >> extern int tpm_chip_register(struct tpm_chip *chip); >> extern void tpm_chip_unregister(struct tpm_chip *chip); >> >> -int tpm_sysfs_add_device(struct tpm_chip *chip); >> -void tpm_sysfs_del_device(struct tpm_chip *chip); >> +void tpm_sysfs_add_device(struct tpm_chip *chip); >> >> int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf); >> >> -- >> 2.4.3 >> ------------------------------------------------------------------------------ Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
On Tue, Apr 19, 2016 at 06:36:22AM -0400, Stefan Berger wrote: > On 04/19/2016 06:12 AM, Jarkko Sakkinen wrote: > >On Mon, Apr 18, 2016 at 01:26:13PM -0400, Stefan Berger wrote: > >>From: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > >> > >>The final thing preventing this was the way the sysfs files were > >>attached to the pdev. Follow the approach developed for ppi and move > >>the sysfs files to the chip->dev with symlinks from the pdev > >>for compatibility. Everything in the core now sanely uses container_of > >>to get the chip. > >Can you give me a quick recap why this patch was mandatory to make the > >patch set work? Which regression in the earlier versions of the patch > >set this fixes? > > The below patch removes usage of dev_get_drvdata() for retrieving the chip. > With Christophe's series dropping the priv field I now can use the drvdata > to store proxy_dev rather than re-introducing the priv field in the chip > structure. Besides that it doesn't seem necessary to use the drvdata field > to get from the chip to the device if a simple container_of can do it. More specifically, since the vtpm patches use a NULL parent, the approach of putting the sysfs files on the parent is no longer workable. The early vtpm patches simply moved the sysfs files to the tpm_chip when a parent is NULL, which is inconsistent for userspace. This also created a problem where drvdata on the chip now had to point back to the chip, meaning it became unusable for its new intended purpose. The fix is to make everything uniform and put the sysfs files in the correct place for all drivers (under the chip) and use symlinks for compat. Jason ------------------------------------------------------------------------------ Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
On Tue, Apr 19, 2016 at 06:36:22AM -0400, Stefan Berger wrote: > On 04/19/2016 06:12 AM, Jarkko Sakkinen wrote: > >On Mon, Apr 18, 2016 at 01:26:13PM -0400, Stefan Berger wrote: > >>From: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > >> > >>The final thing preventing this was the way the sysfs files were > >>attached to the pdev. Follow the approach developed for ppi and move > >>the sysfs files to the chip->dev with symlinks from the pdev > >>for compatibility. Everything in the core now sanely uses container_of > >>to get the chip. > >Can you give me a quick recap why this patch was mandatory to make the > >patch set work? Which regression in the earlier versions of the patch > >set this fixes? > > The below patch removes usage of dev_get_drvdata() for retrieving the chip. > With Christophe's series dropping the priv field I now can use the drvdata > to store proxy_dev rather than re-introducing the priv field in the chip > structure. Besides that it doesn't seem necessary to use the drvdata field > to get from the chip to the device if a simple container_of can do it. Right, ok sounds justified. > Stefan > > > > >/Jarkko > > > >>Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > >>Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> > >>--- > >> drivers/char/tpm/tpm-chip.c | 73 ++++++++++++++++++++++++++++------------ > >> drivers/char/tpm/tpm-interface.c | 7 ++-- > >> drivers/char/tpm/tpm-sysfs.c | 61 ++++++++++++++------------------- > >> drivers/char/tpm/tpm.h | 10 +++--- > >> 4 files changed, 84 insertions(+), 67 deletions(-) > >> > >>diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c > >>index 5bc530c..7e2c9cf 100644 > >>--- a/drivers/char/tpm/tpm-chip.c > >>+++ b/drivers/char/tpm/tpm-chip.c > >>@@ -170,9 +170,7 @@ struct tpm_chip *tpm_chip_alloc(struct device *dev, > >> chip->dev.class = tpm_class; > >> chip->dev.release = tpm_dev_release; > >> chip->dev.parent = dev; > >>-#ifdef CONFIG_ACPI > >> chip->dev.groups = chip->groups; > >>-#endif > >> if (chip->dev_num == 0) > >> chip->dev.devt = MKDEV(MISC_MAJOR, TPM_MINOR); > >>@@ -276,14 +274,10 @@ static void tpm_del_char_device(struct tpm_chip *chip) > >> static int tpm1_chip_register(struct tpm_chip *chip) > >> { > >>- int rc; > >>- > >> if (chip->flags & TPM_CHIP_FLAG_TPM2) > >> return 0; > >>- rc = tpm_sysfs_add_device(chip); > >>- if (rc) > >>- return rc; > >>+ tpm_sysfs_add_device(chip); > >> chip->bios_dir = tpm_bios_log_setup(dev_name(&chip->dev)); > >>@@ -297,10 +291,50 @@ static void tpm1_chip_unregister(struct tpm_chip *chip) > >> if (chip->bios_dir) > >> tpm_bios_log_teardown(chip->bios_dir); > >>+} > >>+ > >>+static void tpm_del_legacy_sysfs(struct tpm_chip *chip) > >>+{ > >>+ struct attribute **i; > >>+ > >>+ if (chip->flags & TPM_CHIP_FLAG_TPM2) > >>+ return; > >>- tpm_sysfs_del_device(chip); > >>+ sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); > >>+ > >>+ for (i = chip->groups[0]->attrs; *i != NULL; ++i) > >>+ sysfs_remove_link(&chip->dev.parent->kobj, (*i)->name); > >> } > >>+/* For compatibility with legacy sysfs paths we provide symlinks from the > >>+ * parent dev directory to selected names within the tpm chip directory. Old > >>+ * kernel versions created these files directly under the parent. > >>+ */ > >>+static int tpm_add_legacy_sysfs(struct tpm_chip *chip) > >>+{ > >>+ struct attribute **i; > >>+ int rc; > >>+ > >>+ if (chip->flags & TPM_CHIP_FLAG_TPM2) > >>+ return 0; > >>+ > >>+ rc = __compat_only_sysfs_link_entry_to_kobj( > >>+ &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); > >>+ if (rc && rc != -ENOENT) > >>+ return rc; > >>+ > >>+ /* All the names from tpm-sysfs */ > >>+ for (i = chip->groups[0]->attrs; *i != NULL; ++i) { > >>+ rc = __compat_only_sysfs_link_entry_to_kobj( > >>+ &chip->dev.parent->kobj, &chip->dev.kobj, (*i)->name); > >>+ if (rc) { > >>+ tpm_del_legacy_sysfs(chip); > >>+ return rc; > >>+ } > >>+ } > >>+ > >>+ return 0; > >>+} > >> /* > >> * tpm_chip_register() - create a character device for the TPM chip > >> * @chip: TPM chip to use. > >>@@ -323,24 +357,20 @@ int tpm_chip_register(struct tpm_chip *chip) > >> tpm_add_ppi(chip); > >> rc = tpm_add_char_device(chip); > >>- if (rc) > >>- goto out_err; > >>+ if (rc) { > >>+ tpm1_chip_unregister(chip); > >>+ return rc; > >>+ } > >> chip->flags |= TPM_CHIP_FLAG_REGISTERED; > >>- if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) { > >>- rc = __compat_only_sysfs_link_entry_to_kobj( > >>- &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); > >>- if (rc && rc != -ENOENT) { > >>- tpm_chip_unregister(chip); > >>- return rc; > >>- } > >>+ rc = tpm_add_legacy_sysfs(chip); > >>+ if (rc) { > >>+ tpm_chip_unregister(chip); > >>+ return rc; > >> } > >> return 0; > >>-out_err: > >>- tpm1_chip_unregister(chip); > >>- return rc; > >> } > >> EXPORT_SYMBOL_GPL(tpm_chip_register); > >>@@ -362,8 +392,7 @@ void tpm_chip_unregister(struct tpm_chip *chip) > >> if (!(chip->flags & TPM_CHIP_FLAG_REGISTERED)) > >> return; > >>- if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) > >>- sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); > >>+ tpm_del_legacy_sysfs(chip); > >> tpm1_chip_unregister(chip); > >> tpm_del_char_device(chip); > >>diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c > >>index 7cba092..080dade 100644 > >>--- a/drivers/char/tpm/tpm-interface.c > >>+++ b/drivers/char/tpm/tpm-interface.c > >>@@ -432,12 +432,11 @@ static const struct tpm_input_header tpm_getcap_header = { > >> .ordinal = TPM_ORD_GET_CAP > >> }; > >>-ssize_t tpm_getcap(struct device *dev, __be32 subcap_id, cap_t *cap, > >>+ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, > >> const char *desc) > >> { > >> struct tpm_cmd_t tpm_cmd; > >> int rc; > >>- struct tpm_chip *chip = dev_get_drvdata(dev); > >> tpm_cmd.header.in = tpm_getcap_header; > >> if (subcap_id == CAP_VERSION_1_1 || subcap_id == CAP_VERSION_1_2) { > >>@@ -935,7 +934,7 @@ static struct tpm_input_header savestate_header = { > >> */ > >> int tpm_pm_suspend(struct device *dev) > >> { > >>- struct tpm_chip *chip = dev_get_drvdata(dev); > >>+ struct tpm_chip *chip = to_tpm_chip(dev); > >> struct tpm_cmd_t cmd; > >> int rc, try; > >>@@ -996,7 +995,7 @@ EXPORT_SYMBOL_GPL(tpm_pm_suspend); > >> */ > >> int tpm_pm_resume(struct device *dev) > >> { > >>- struct tpm_chip *chip = dev_get_drvdata(dev); > >>+ struct tpm_chip *chip = to_tpm_chip(dev); > >> if (chip == NULL) > >> return -ENODEV; > >>diff --git a/drivers/char/tpm/tpm-sysfs.c b/drivers/char/tpm/tpm-sysfs.c > >>index a7c3473..b46cf70 100644 > >>--- a/drivers/char/tpm/tpm-sysfs.c > >>+++ b/drivers/char/tpm/tpm-sysfs.c > >>@@ -36,7 +36,7 @@ static ssize_t pubek_show(struct device *dev, struct device_attribute *attr, > >> int i, rc; > >> char *str = buf; > >>- struct tpm_chip *chip = dev_get_drvdata(dev); > >>+ struct tpm_chip *chip = to_tpm_chip(dev); > >> tpm_cmd.header.in = tpm_readpubek_header; > >> err = tpm_transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE, > >>@@ -92,9 +92,9 @@ static ssize_t pcrs_show(struct device *dev, struct device_attribute *attr, > >> ssize_t rc; > >> int i, j, num_pcrs; > >> char *str = buf; > >>- struct tpm_chip *chip = dev_get_drvdata(dev); > >>+ struct tpm_chip *chip = to_tpm_chip(dev); > >>- rc = tpm_getcap(dev, TPM_CAP_PROP_PCR, &cap, > >>+ rc = tpm_getcap(chip, TPM_CAP_PROP_PCR, &cap, > >> "attempting to determine the number of PCRS"); > >> if (rc) > >> return 0; > >>@@ -119,8 +119,8 @@ static ssize_t enabled_show(struct device *dev, struct device_attribute *attr, > >> cap_t cap; > >> ssize_t rc; > >>- rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, > >>- "attempting to determine the permanent enabled state"); > >>+ rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, > >>+ "attempting to determine the permanent enabled state"); > >> if (rc) > >> return 0; > >>@@ -135,8 +135,8 @@ static ssize_t active_show(struct device *dev, struct device_attribute *attr, > >> cap_t cap; > >> ssize_t rc; > >>- rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, > >>- "attempting to determine the permanent active state"); > >>+ rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, > >>+ "attempting to determine the permanent active state"); > >> if (rc) > >> return 0; > >>@@ -151,8 +151,8 @@ static ssize_t owned_show(struct device *dev, struct device_attribute *attr, > >> cap_t cap; > >> ssize_t rc; > >>- rc = tpm_getcap(dev, TPM_CAP_PROP_OWNER, &cap, > >>- "attempting to determine the owner state"); > >>+ rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_PROP_OWNER, &cap, > >>+ "attempting to determine the owner state"); > >> if (rc) > >> return 0; > >>@@ -167,8 +167,8 @@ static ssize_t temp_deactivated_show(struct device *dev, > >> cap_t cap; > >> ssize_t rc; > >>- rc = tpm_getcap(dev, TPM_CAP_FLAG_VOL, &cap, > >>- "attempting to determine the temporary state"); > >>+ rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_VOL, &cap, > >>+ "attempting to determine the temporary state"); > >> if (rc) > >> return 0; > >>@@ -180,11 +180,12 @@ static DEVICE_ATTR_RO(temp_deactivated); > >> static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > >> char *buf) > >> { > >>+ struct tpm_chip *chip = to_tpm_chip(dev); > >> cap_t cap; > >> ssize_t rc; > >> char *str = buf; > >>- rc = tpm_getcap(dev, TPM_CAP_PROP_MANUFACTURER, &cap, > >>+ rc = tpm_getcap(chip, TPM_CAP_PROP_MANUFACTURER, &cap, > >> "attempting to determine the manufacturer"); > >> if (rc) > >> return 0; > >>@@ -192,8 +193,8 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > >> be32_to_cpu(cap.manufacturer_id)); > >> /* Try to get a TPM version 1.2 TPM_CAP_VERSION_INFO */ > >>- rc = tpm_getcap(dev, CAP_VERSION_1_2, &cap, > >>- "attempting to determine the 1.2 version"); > >>+ rc = tpm_getcap(chip, CAP_VERSION_1_2, &cap, > >>+ "attempting to determine the 1.2 version"); > >> if (!rc) { > >> str += sprintf(str, > >> "TCG version: %d.%d\nFirmware version: %d.%d\n", > >>@@ -203,7 +204,7 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > >> cap.tpm_version_1_2.revMinor); > >> } else { > >> /* Otherwise just use TPM_STRUCT_VER */ > >>- rc = tpm_getcap(dev, CAP_VERSION_1_1, &cap, > >>+ rc = tpm_getcap(chip, CAP_VERSION_1_1, &cap, > >> "attempting to determine the 1.1 version"); > >> if (rc) > >> return 0; > >>@@ -222,7 +223,7 @@ static DEVICE_ATTR_RO(caps); > >> static ssize_t cancel_store(struct device *dev, struct device_attribute *attr, > >> const char *buf, size_t count) > >> { > >>- struct tpm_chip *chip = dev_get_drvdata(dev); > >>+ struct tpm_chip *chip = to_tpm_chip(dev); > >> if (chip == NULL) > >> return 0; > >>@@ -234,7 +235,7 @@ static DEVICE_ATTR_WO(cancel); > >> static ssize_t durations_show(struct device *dev, struct device_attribute *attr, > >> char *buf) > >> { > >>- struct tpm_chip *chip = dev_get_drvdata(dev); > >>+ struct tpm_chip *chip = to_tpm_chip(dev); > >> if (chip->duration[TPM_LONG] == 0) > >> return 0; > >>@@ -251,7 +252,7 @@ static DEVICE_ATTR_RO(durations); > >> static ssize_t timeouts_show(struct device *dev, struct device_attribute *attr, > >> char *buf) > >> { > >>- struct tpm_chip *chip = dev_get_drvdata(dev); > >>+ struct tpm_chip *chip = to_tpm_chip(dev); > >> return sprintf(buf, "%d %d %d %d [%s]\n", > >> jiffies_to_usecs(chip->timeout_a), > >>@@ -281,24 +282,12 @@ static const struct attribute_group tpm_dev_group = { > >> .attrs = tpm_dev_attrs, > >> }; > >>-int tpm_sysfs_add_device(struct tpm_chip *chip) > >>+void tpm_sysfs_add_device(struct tpm_chip *chip) > >> { > >>- int err; > >>- err = sysfs_create_group(&chip->dev.parent->kobj, > >>- &tpm_dev_group); > >>- > >>- if (err) > >>- dev_err(&chip->dev, > >>- "failed to create sysfs attributes, %d\n", err); > >>- return err; > >>-} > >>- > >>-void tpm_sysfs_del_device(struct tpm_chip *chip) > >>-{ > >>- /* The sysfs routines rely on an implicit tpm_try_get_ops, this > >>- * function is called before ops is null'd and the sysfs core > >>- * synchronizes this removal so that no callbacks are running or can > >>- * run again > >>+ /* The sysfs routines rely on an implicit tpm_try_get_ops, device_del > >>+ * is called before ops is null'd and the sysfs core synchronizes this > >>+ * removal so that no callbacks are running or can run again > >> */ > >>- sysfs_remove_group(&chip->dev.parent->kobj, &tpm_dev_group); > >>+ WARN_ON(chip->groups_cnt != 0); > >>+ chip->groups[chip->groups_cnt++] = &tpm_dev_group; > >> } > >>diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h > >>index 8bc6fb8..508e8e0 100644 > >>--- a/drivers/char/tpm/tpm.h > >>+++ b/drivers/char/tpm/tpm.h > >>@@ -168,9 +168,9 @@ struct tpm_chip { > >> struct dentry **bios_dir; > >>-#ifdef CONFIG_ACPI > >>- const struct attribute_group *groups[2]; > >>+ const struct attribute_group *groups[3]; > >> unsigned int groups_cnt; > >>+#ifdef CONFIG_ACPI > >> acpi_handle acpi_dev_handle; > >> char ppi_version[TPM_PPI_VERSION_LEN + 1]; > >> #endif /* CONFIG_ACPI */ > >>@@ -471,7 +471,8 @@ extern dev_t tpm_devt; > >> extern const struct file_operations tpm_fops; > >> extern struct idr dev_nums_idr; > >>-ssize_t tpm_getcap(struct device *, __be32, cap_t *, const char *); > >>+ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, > >>+ const char *desc); > >> ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf, > >> size_t bufsiz); > >> ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, int len, > >>@@ -496,8 +497,7 @@ extern struct tpm_chip *tpmm_chip_alloc(struct device *pdev, > >> extern int tpm_chip_register(struct tpm_chip *chip); > >> extern void tpm_chip_unregister(struct tpm_chip *chip); > >>-int tpm_sysfs_add_device(struct tpm_chip *chip); > >>-void tpm_sysfs_del_device(struct tpm_chip *chip); > >>+void tpm_sysfs_add_device(struct tpm_chip *chip); > >> int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf); > >>-- > >>2.4.3 > >> > ------------------------------------------------------------------------------ Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
On Tue, Apr 19, 2016 at 11:06:45AM -0600, Jason Gunthorpe wrote: > On Tue, Apr 19, 2016 at 06:36:22AM -0400, Stefan Berger wrote: > > On 04/19/2016 06:12 AM, Jarkko Sakkinen wrote: > > >On Mon, Apr 18, 2016 at 01:26:13PM -0400, Stefan Berger wrote: > > >>From: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > > >> > > >>The final thing preventing this was the way the sysfs files were > > >>attached to the pdev. Follow the approach developed for ppi and move > > >>the sysfs files to the chip->dev with symlinks from the pdev > > >>for compatibility. Everything in the core now sanely uses container_of > > >>to get the chip. > > >Can you give me a quick recap why this patch was mandatory to make the > > >patch set work? Which regression in the earlier versions of the patch > > >set this fixes? > > > > The below patch removes usage of dev_get_drvdata() for retrieving the chip. > > With Christophe's series dropping the priv field I now can use the drvdata > > to store proxy_dev rather than re-introducing the priv field in the chip > > structure. Besides that it doesn't seem necessary to use the drvdata field > > to get from the chip to the device if a simple container_of can do it. > > More specifically, since the vtpm patches use a NULL parent, the > approach of putting the sysfs files on the parent is no longer > workable. > > The early vtpm patches simply moved the sysfs files to the tpm_chip > when a parent is NULL, which is inconsistent for userspace. This also > created a problem where drvdata on the chip now had to point back to > the chip, meaning it became unusable for its new intended purpose. > > The fix is to make everything uniform and put the sysfs files in the > correct place for all drivers (under the chip) and use symlinks for > compat. OK, thanks for explaining this, make perfect sense now. I'll do a more detailed review (and testing) later on. > Jason /Jarkko ------------------------------------------------------------------------------ Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
On Mon, Apr 18, 2016 at 01:26:13PM -0400, Stefan Berger wrote: > From: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > > The final thing preventing this was the way the sysfs files were > attached to the pdev. Follow the approach developed for ppi and move > the sysfs files to the chip->dev with symlinks from the pdev > for compatibility. Everything in the core now sanely uses container_of > to get the chip. > > Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Tested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> Three configurations: * Haswell NUC with PTT (tpm_crb) * Another NUC with dTPM 2.0 chip * Dell E6420, which has TPM 1.2 chip Things seem to be unbroken. Stefan, have you verified that sysfs attributes work through routes: 1. From char device sysfs directory 2. Through link An also tried insmod/rmmod couple of rounds? If you have and things continue work could you give this Tested-by? /Jarkko > --- > drivers/char/tpm/tpm-chip.c | 73 ++++++++++++++++++++++++++++------------ > drivers/char/tpm/tpm-interface.c | 7 ++-- > drivers/char/tpm/tpm-sysfs.c | 61 ++++++++++++++------------------- > drivers/char/tpm/tpm.h | 10 +++--- > 4 files changed, 84 insertions(+), 67 deletions(-) > > diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c > index 5bc530c..7e2c9cf 100644 > --- a/drivers/char/tpm/tpm-chip.c > +++ b/drivers/char/tpm/tpm-chip.c > @@ -170,9 +170,7 @@ struct tpm_chip *tpm_chip_alloc(struct device *dev, > chip->dev.class = tpm_class; > chip->dev.release = tpm_dev_release; > chip->dev.parent = dev; > -#ifdef CONFIG_ACPI > chip->dev.groups = chip->groups; > -#endif > > if (chip->dev_num == 0) > chip->dev.devt = MKDEV(MISC_MAJOR, TPM_MINOR); > @@ -276,14 +274,10 @@ static void tpm_del_char_device(struct tpm_chip *chip) > > static int tpm1_chip_register(struct tpm_chip *chip) > { > - int rc; > - > if (chip->flags & TPM_CHIP_FLAG_TPM2) > return 0; > > - rc = tpm_sysfs_add_device(chip); > - if (rc) > - return rc; > + tpm_sysfs_add_device(chip); > > chip->bios_dir = tpm_bios_log_setup(dev_name(&chip->dev)); > > @@ -297,10 +291,50 @@ static void tpm1_chip_unregister(struct tpm_chip *chip) > > if (chip->bios_dir) > tpm_bios_log_teardown(chip->bios_dir); > +} > + > +static void tpm_del_legacy_sysfs(struct tpm_chip *chip) > +{ > + struct attribute **i; > + > + if (chip->flags & TPM_CHIP_FLAG_TPM2) > + return; > > - tpm_sysfs_del_device(chip); > + sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); > + > + for (i = chip->groups[0]->attrs; *i != NULL; ++i) > + sysfs_remove_link(&chip->dev.parent->kobj, (*i)->name); > } > > +/* For compatibility with legacy sysfs paths we provide symlinks from the > + * parent dev directory to selected names within the tpm chip directory. Old > + * kernel versions created these files directly under the parent. > + */ > +static int tpm_add_legacy_sysfs(struct tpm_chip *chip) > +{ > + struct attribute **i; > + int rc; > + > + if (chip->flags & TPM_CHIP_FLAG_TPM2) > + return 0; > + > + rc = __compat_only_sysfs_link_entry_to_kobj( > + &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); > + if (rc && rc != -ENOENT) > + return rc; > + > + /* All the names from tpm-sysfs */ > + for (i = chip->groups[0]->attrs; *i != NULL; ++i) { > + rc = __compat_only_sysfs_link_entry_to_kobj( > + &chip->dev.parent->kobj, &chip->dev.kobj, (*i)->name); > + if (rc) { > + tpm_del_legacy_sysfs(chip); > + return rc; > + } > + } > + > + return 0; > +} > /* > * tpm_chip_register() - create a character device for the TPM chip > * @chip: TPM chip to use. > @@ -323,24 +357,20 @@ int tpm_chip_register(struct tpm_chip *chip) > tpm_add_ppi(chip); > > rc = tpm_add_char_device(chip); > - if (rc) > - goto out_err; > + if (rc) { > + tpm1_chip_unregister(chip); > + return rc; > + } > > chip->flags |= TPM_CHIP_FLAG_REGISTERED; > > - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) { > - rc = __compat_only_sysfs_link_entry_to_kobj( > - &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); > - if (rc && rc != -ENOENT) { > - tpm_chip_unregister(chip); > - return rc; > - } > + rc = tpm_add_legacy_sysfs(chip); > + if (rc) { > + tpm_chip_unregister(chip); > + return rc; > } > > return 0; > -out_err: > - tpm1_chip_unregister(chip); > - return rc; > } > EXPORT_SYMBOL_GPL(tpm_chip_register); > > @@ -362,8 +392,7 @@ void tpm_chip_unregister(struct tpm_chip *chip) > if (!(chip->flags & TPM_CHIP_FLAG_REGISTERED)) > return; > > - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) > - sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); > + tpm_del_legacy_sysfs(chip); > > tpm1_chip_unregister(chip); > tpm_del_char_device(chip); > diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c > index 7cba092..080dade 100644 > --- a/drivers/char/tpm/tpm-interface.c > +++ b/drivers/char/tpm/tpm-interface.c > @@ -432,12 +432,11 @@ static const struct tpm_input_header tpm_getcap_header = { > .ordinal = TPM_ORD_GET_CAP > }; > > -ssize_t tpm_getcap(struct device *dev, __be32 subcap_id, cap_t *cap, > +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, > const char *desc) > { > struct tpm_cmd_t tpm_cmd; > int rc; > - struct tpm_chip *chip = dev_get_drvdata(dev); > > tpm_cmd.header.in = tpm_getcap_header; > if (subcap_id == CAP_VERSION_1_1 || subcap_id == CAP_VERSION_1_2) { > @@ -935,7 +934,7 @@ static struct tpm_input_header savestate_header = { > */ > int tpm_pm_suspend(struct device *dev) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > struct tpm_cmd_t cmd; > int rc, try; > > @@ -996,7 +995,7 @@ EXPORT_SYMBOL_GPL(tpm_pm_suspend); > */ > int tpm_pm_resume(struct device *dev) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > if (chip == NULL) > return -ENODEV; > diff --git a/drivers/char/tpm/tpm-sysfs.c b/drivers/char/tpm/tpm-sysfs.c > index a7c3473..b46cf70 100644 > --- a/drivers/char/tpm/tpm-sysfs.c > +++ b/drivers/char/tpm/tpm-sysfs.c > @@ -36,7 +36,7 @@ static ssize_t pubek_show(struct device *dev, struct device_attribute *attr, > int i, rc; > char *str = buf; > > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > tpm_cmd.header.in = tpm_readpubek_header; > err = tpm_transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE, > @@ -92,9 +92,9 @@ static ssize_t pcrs_show(struct device *dev, struct device_attribute *attr, > ssize_t rc; > int i, j, num_pcrs; > char *str = buf; > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > - rc = tpm_getcap(dev, TPM_CAP_PROP_PCR, &cap, > + rc = tpm_getcap(chip, TPM_CAP_PROP_PCR, &cap, > "attempting to determine the number of PCRS"); > if (rc) > return 0; > @@ -119,8 +119,8 @@ static ssize_t enabled_show(struct device *dev, struct device_attribute *attr, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, > - "attempting to determine the permanent enabled state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, > + "attempting to determine the permanent enabled state"); > if (rc) > return 0; > > @@ -135,8 +135,8 @@ static ssize_t active_show(struct device *dev, struct device_attribute *attr, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, > - "attempting to determine the permanent active state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, > + "attempting to determine the permanent active state"); > if (rc) > return 0; > > @@ -151,8 +151,8 @@ static ssize_t owned_show(struct device *dev, struct device_attribute *attr, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_PROP_OWNER, &cap, > - "attempting to determine the owner state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_PROP_OWNER, &cap, > + "attempting to determine the owner state"); > if (rc) > return 0; > > @@ -167,8 +167,8 @@ static ssize_t temp_deactivated_show(struct device *dev, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_VOL, &cap, > - "attempting to determine the temporary state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_VOL, &cap, > + "attempting to determine the temporary state"); > if (rc) > return 0; > > @@ -180,11 +180,12 @@ static DEVICE_ATTR_RO(temp_deactivated); > static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > char *buf) > { > + struct tpm_chip *chip = to_tpm_chip(dev); > cap_t cap; > ssize_t rc; > char *str = buf; > > - rc = tpm_getcap(dev, TPM_CAP_PROP_MANUFACTURER, &cap, > + rc = tpm_getcap(chip, TPM_CAP_PROP_MANUFACTURER, &cap, > "attempting to determine the manufacturer"); > if (rc) > return 0; > @@ -192,8 +193,8 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > be32_to_cpu(cap.manufacturer_id)); > > /* Try to get a TPM version 1.2 TPM_CAP_VERSION_INFO */ > - rc = tpm_getcap(dev, CAP_VERSION_1_2, &cap, > - "attempting to determine the 1.2 version"); > + rc = tpm_getcap(chip, CAP_VERSION_1_2, &cap, > + "attempting to determine the 1.2 version"); > if (!rc) { > str += sprintf(str, > "TCG version: %d.%d\nFirmware version: %d.%d\n", > @@ -203,7 +204,7 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > cap.tpm_version_1_2.revMinor); > } else { > /* Otherwise just use TPM_STRUCT_VER */ > - rc = tpm_getcap(dev, CAP_VERSION_1_1, &cap, > + rc = tpm_getcap(chip, CAP_VERSION_1_1, &cap, > "attempting to determine the 1.1 version"); > if (rc) > return 0; > @@ -222,7 +223,7 @@ static DEVICE_ATTR_RO(caps); > static ssize_t cancel_store(struct device *dev, struct device_attribute *attr, > const char *buf, size_t count) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > if (chip == NULL) > return 0; > > @@ -234,7 +235,7 @@ static DEVICE_ATTR_WO(cancel); > static ssize_t durations_show(struct device *dev, struct device_attribute *attr, > char *buf) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > if (chip->duration[TPM_LONG] == 0) > return 0; > @@ -251,7 +252,7 @@ static DEVICE_ATTR_RO(durations); > static ssize_t timeouts_show(struct device *dev, struct device_attribute *attr, > char *buf) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > return sprintf(buf, "%d %d %d %d [%s]\n", > jiffies_to_usecs(chip->timeout_a), > @@ -281,24 +282,12 @@ static const struct attribute_group tpm_dev_group = { > .attrs = tpm_dev_attrs, > }; > > -int tpm_sysfs_add_device(struct tpm_chip *chip) > +void tpm_sysfs_add_device(struct tpm_chip *chip) > { > - int err; > - err = sysfs_create_group(&chip->dev.parent->kobj, > - &tpm_dev_group); > - > - if (err) > - dev_err(&chip->dev, > - "failed to create sysfs attributes, %d\n", err); > - return err; > -} > - > -void tpm_sysfs_del_device(struct tpm_chip *chip) > -{ > - /* The sysfs routines rely on an implicit tpm_try_get_ops, this > - * function is called before ops is null'd and the sysfs core > - * synchronizes this removal so that no callbacks are running or can > - * run again > + /* The sysfs routines rely on an implicit tpm_try_get_ops, device_del > + * is called before ops is null'd and the sysfs core synchronizes this > + * removal so that no callbacks are running or can run again > */ > - sysfs_remove_group(&chip->dev.parent->kobj, &tpm_dev_group); > + WARN_ON(chip->groups_cnt != 0); > + chip->groups[chip->groups_cnt++] = &tpm_dev_group; > } > diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h > index 8bc6fb8..508e8e0 100644 > --- a/drivers/char/tpm/tpm.h > +++ b/drivers/char/tpm/tpm.h > @@ -168,9 +168,9 @@ struct tpm_chip { > > struct dentry **bios_dir; > > -#ifdef CONFIG_ACPI > - const struct attribute_group *groups[2]; > + const struct attribute_group *groups[3]; > unsigned int groups_cnt; > +#ifdef CONFIG_ACPI > acpi_handle acpi_dev_handle; > char ppi_version[TPM_PPI_VERSION_LEN + 1]; > #endif /* CONFIG_ACPI */ > @@ -471,7 +471,8 @@ extern dev_t tpm_devt; > extern const struct file_operations tpm_fops; > extern struct idr dev_nums_idr; > > -ssize_t tpm_getcap(struct device *, __be32, cap_t *, const char *); > +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, > + const char *desc); > ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf, > size_t bufsiz); > ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, int len, > @@ -496,8 +497,7 @@ extern struct tpm_chip *tpmm_chip_alloc(struct device *pdev, > extern int tpm_chip_register(struct tpm_chip *chip); > extern void tpm_chip_unregister(struct tpm_chip *chip); > > -int tpm_sysfs_add_device(struct tpm_chip *chip); > -void tpm_sysfs_del_device(struct tpm_chip *chip); > +void tpm_sysfs_add_device(struct tpm_chip *chip); > > int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf); > > -- > 2.4.3 > ------------------------------------------------------------------------------ Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
On 04/22/2016 11:06 AM, Jarkko Sakkinen wrote: > On Mon, Apr 18, 2016 at 01:26:13PM -0400, Stefan Berger wrote: >> From: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> >> >> The final thing preventing this was the way the sysfs files were >> attached to the pdev. Follow the approach developed for ppi and move >> the sysfs files to the chip->dev with symlinks from the pdev >> for compatibility. Everything in the core now sanely uses container_of >> to get the chip. >> >> Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> >> Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> > Tested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> > > Three configurations: > > * Haswell NUC with PTT (tpm_crb) > * Another NUC with dTPM 2.0 chip > * Dell E6420, which has TPM 1.2 chip > > Things seem to be unbroken. > > Stefan, have you verified that sysfs attributes work through routes: > > 1. From char device sysfs directory > 2. Through link Tested-by: Stefan Berger <stefanb@linux.vnet.ibm.com> > > An also tried insmod/rmmod couple of rounds? Works as-is in polling mode but requires Jason's patch "tpm: Fix IRQ unwind ordering in TIS" for interrupt mode to not throw errors on 'rmmod'. Tested-by: Stefan Berger <stefanb@linux.vnet.ibm.com> ------------------------------------------------------------------------------ Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
all, My machine is locking up during suspend and I have bisected the problem to this patch (e89f8b1ade9cc1a) in the latest linux-next (20160506) kernel. Let me know if I can test patches or do anything else to help. On Mon, Apr 18, 2016 at 01:26:13PM -0400, Stefan Berger wrote: > From: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > > The final thing preventing this was the way the sysfs files were > attached to the pdev. Follow the approach developed for ppi and move > the sysfs files to the chip->dev with symlinks from the pdev > for compatibility. Everything in the core now sanely uses container_of > to get the chip. > > Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> > --- > drivers/char/tpm/tpm-chip.c | 73 ++++++++++++++++++++++++++++------------ > drivers/char/tpm/tpm-interface.c | 7 ++-- > drivers/char/tpm/tpm-sysfs.c | 61 ++++++++++++++------------------- > drivers/char/tpm/tpm.h | 10 +++--- > 4 files changed, 84 insertions(+), 67 deletions(-) > > diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c > index 5bc530c..7e2c9cf 100644 > --- a/drivers/char/tpm/tpm-chip.c > +++ b/drivers/char/tpm/tpm-chip.c > @@ -170,9 +170,7 @@ struct tpm_chip *tpm_chip_alloc(struct device *dev, > chip->dev.class = tpm_class; > chip->dev.release = tpm_dev_release; > chip->dev.parent = dev; > -#ifdef CONFIG_ACPI > chip->dev.groups = chip->groups; > -#endif > > if (chip->dev_num == 0) > chip->dev.devt = MKDEV(MISC_MAJOR, TPM_MINOR); > @@ -276,14 +274,10 @@ static void tpm_del_char_device(struct tpm_chip *chip) > > static int tpm1_chip_register(struct tpm_chip *chip) > { > - int rc; > - > if (chip->flags & TPM_CHIP_FLAG_TPM2) > return 0; > > - rc = tpm_sysfs_add_device(chip); > - if (rc) > - return rc; > + tpm_sysfs_add_device(chip); > > chip->bios_dir = tpm_bios_log_setup(dev_name(&chip->dev)); > > @@ -297,10 +291,50 @@ static void tpm1_chip_unregister(struct tpm_chip *chip) > > if (chip->bios_dir) > tpm_bios_log_teardown(chip->bios_dir); > +} > + > +static void tpm_del_legacy_sysfs(struct tpm_chip *chip) > +{ > + struct attribute **i; > + > + if (chip->flags & TPM_CHIP_FLAG_TPM2) > + return; > > - tpm_sysfs_del_device(chip); > + sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); > + > + for (i = chip->groups[0]->attrs; *i != NULL; ++i) > + sysfs_remove_link(&chip->dev.parent->kobj, (*i)->name); > } > > +/* For compatibility with legacy sysfs paths we provide symlinks from the > + * parent dev directory to selected names within the tpm chip directory. Old > + * kernel versions created these files directly under the parent. > + */ > +static int tpm_add_legacy_sysfs(struct tpm_chip *chip) > +{ > + struct attribute **i; > + int rc; > + > + if (chip->flags & TPM_CHIP_FLAG_TPM2) > + return 0; > + > + rc = __compat_only_sysfs_link_entry_to_kobj( > + &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); > + if (rc && rc != -ENOENT) > + return rc; > + > + /* All the names from tpm-sysfs */ > + for (i = chip->groups[0]->attrs; *i != NULL; ++i) { > + rc = __compat_only_sysfs_link_entry_to_kobj( > + &chip->dev.parent->kobj, &chip->dev.kobj, (*i)->name); > + if (rc) { > + tpm_del_legacy_sysfs(chip); > + return rc; > + } > + } > + > + return 0; > +} > /* > * tpm_chip_register() - create a character device for the TPM chip > * @chip: TPM chip to use. > @@ -323,24 +357,20 @@ int tpm_chip_register(struct tpm_chip *chip) > tpm_add_ppi(chip); > > rc = tpm_add_char_device(chip); > - if (rc) > - goto out_err; > + if (rc) { > + tpm1_chip_unregister(chip); > + return rc; > + } > > chip->flags |= TPM_CHIP_FLAG_REGISTERED; > > - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) { > - rc = __compat_only_sysfs_link_entry_to_kobj( > - &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); > - if (rc && rc != -ENOENT) { > - tpm_chip_unregister(chip); > - return rc; > - } > + rc = tpm_add_legacy_sysfs(chip); > + if (rc) { > + tpm_chip_unregister(chip); > + return rc; > } > > return 0; > -out_err: > - tpm1_chip_unregister(chip); > - return rc; > } > EXPORT_SYMBOL_GPL(tpm_chip_register); > > @@ -362,8 +392,7 @@ void tpm_chip_unregister(struct tpm_chip *chip) > if (!(chip->flags & TPM_CHIP_FLAG_REGISTERED)) > return; > > - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) > - sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); > + tpm_del_legacy_sysfs(chip); > > tpm1_chip_unregister(chip); > tpm_del_char_device(chip); > diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c > index 7cba092..080dade 100644 > --- a/drivers/char/tpm/tpm-interface.c > +++ b/drivers/char/tpm/tpm-interface.c > @@ -432,12 +432,11 @@ static const struct tpm_input_header tpm_getcap_header = { > .ordinal = TPM_ORD_GET_CAP > }; > > -ssize_t tpm_getcap(struct device *dev, __be32 subcap_id, cap_t *cap, > +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, > const char *desc) > { > struct tpm_cmd_t tpm_cmd; > int rc; > - struct tpm_chip *chip = dev_get_drvdata(dev); > > tpm_cmd.header.in = tpm_getcap_header; > if (subcap_id == CAP_VERSION_1_1 || subcap_id == CAP_VERSION_1_2) { > @@ -935,7 +934,7 @@ static struct tpm_input_header savestate_header = { > */ > int tpm_pm_suspend(struct device *dev) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > struct tpm_cmd_t cmd; > int rc, try; > > @@ -996,7 +995,7 @@ EXPORT_SYMBOL_GPL(tpm_pm_suspend); > */ > int tpm_pm_resume(struct device *dev) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > if (chip == NULL) > return -ENODEV; > diff --git a/drivers/char/tpm/tpm-sysfs.c b/drivers/char/tpm/tpm-sysfs.c > index a7c3473..b46cf70 100644 > --- a/drivers/char/tpm/tpm-sysfs.c > +++ b/drivers/char/tpm/tpm-sysfs.c > @@ -36,7 +36,7 @@ static ssize_t pubek_show(struct device *dev, struct device_attribute *attr, > int i, rc; > char *str = buf; > > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > tpm_cmd.header.in = tpm_readpubek_header; > err = tpm_transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE, > @@ -92,9 +92,9 @@ static ssize_t pcrs_show(struct device *dev, struct device_attribute *attr, > ssize_t rc; > int i, j, num_pcrs; > char *str = buf; > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > - rc = tpm_getcap(dev, TPM_CAP_PROP_PCR, &cap, > + rc = tpm_getcap(chip, TPM_CAP_PROP_PCR, &cap, > "attempting to determine the number of PCRS"); > if (rc) > return 0; > @@ -119,8 +119,8 @@ static ssize_t enabled_show(struct device *dev, struct device_attribute *attr, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, > - "attempting to determine the permanent enabled state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, > + "attempting to determine the permanent enabled state"); > if (rc) > return 0; > > @@ -135,8 +135,8 @@ static ssize_t active_show(struct device *dev, struct device_attribute *attr, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, > - "attempting to determine the permanent active state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, > + "attempting to determine the permanent active state"); > if (rc) > return 0; > > @@ -151,8 +151,8 @@ static ssize_t owned_show(struct device *dev, struct device_attribute *attr, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_PROP_OWNER, &cap, > - "attempting to determine the owner state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_PROP_OWNER, &cap, > + "attempting to determine the owner state"); > if (rc) > return 0; > > @@ -167,8 +167,8 @@ static ssize_t temp_deactivated_show(struct device *dev, > cap_t cap; > ssize_t rc; > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_VOL, &cap, > - "attempting to determine the temporary state"); > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_VOL, &cap, > + "attempting to determine the temporary state"); > if (rc) > return 0; > > @@ -180,11 +180,12 @@ static DEVICE_ATTR_RO(temp_deactivated); > static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > char *buf) > { > + struct tpm_chip *chip = to_tpm_chip(dev); > cap_t cap; > ssize_t rc; > char *str = buf; > > - rc = tpm_getcap(dev, TPM_CAP_PROP_MANUFACTURER, &cap, > + rc = tpm_getcap(chip, TPM_CAP_PROP_MANUFACTURER, &cap, > "attempting to determine the manufacturer"); > if (rc) > return 0; > @@ -192,8 +193,8 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > be32_to_cpu(cap.manufacturer_id)); > > /* Try to get a TPM version 1.2 TPM_CAP_VERSION_INFO */ > - rc = tpm_getcap(dev, CAP_VERSION_1_2, &cap, > - "attempting to determine the 1.2 version"); > + rc = tpm_getcap(chip, CAP_VERSION_1_2, &cap, > + "attempting to determine the 1.2 version"); > if (!rc) { > str += sprintf(str, > "TCG version: %d.%d\nFirmware version: %d.%d\n", > @@ -203,7 +204,7 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > cap.tpm_version_1_2.revMinor); > } else { > /* Otherwise just use TPM_STRUCT_VER */ > - rc = tpm_getcap(dev, CAP_VERSION_1_1, &cap, > + rc = tpm_getcap(chip, CAP_VERSION_1_1, &cap, > "attempting to determine the 1.1 version"); > if (rc) > return 0; > @@ -222,7 +223,7 @@ static DEVICE_ATTR_RO(caps); > static ssize_t cancel_store(struct device *dev, struct device_attribute *attr, > const char *buf, size_t count) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > if (chip == NULL) > return 0; > > @@ -234,7 +235,7 @@ static DEVICE_ATTR_WO(cancel); > static ssize_t durations_show(struct device *dev, struct device_attribute *attr, > char *buf) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > if (chip->duration[TPM_LONG] == 0) > return 0; > @@ -251,7 +252,7 @@ static DEVICE_ATTR_RO(durations); > static ssize_t timeouts_show(struct device *dev, struct device_attribute *attr, > char *buf) > { > - struct tpm_chip *chip = dev_get_drvdata(dev); > + struct tpm_chip *chip = to_tpm_chip(dev); > > return sprintf(buf, "%d %d %d %d [%s]\n", > jiffies_to_usecs(chip->timeout_a), > @@ -281,24 +282,12 @@ static const struct attribute_group tpm_dev_group = { > .attrs = tpm_dev_attrs, > }; > > -int tpm_sysfs_add_device(struct tpm_chip *chip) > +void tpm_sysfs_add_device(struct tpm_chip *chip) > { > - int err; > - err = sysfs_create_group(&chip->dev.parent->kobj, > - &tpm_dev_group); > - > - if (err) > - dev_err(&chip->dev, > - "failed to create sysfs attributes, %d\n", err); > - return err; > -} > - > -void tpm_sysfs_del_device(struct tpm_chip *chip) > -{ > - /* The sysfs routines rely on an implicit tpm_try_get_ops, this > - * function is called before ops is null'd and the sysfs core > - * synchronizes this removal so that no callbacks are running or can > - * run again > + /* The sysfs routines rely on an implicit tpm_try_get_ops, device_del > + * is called before ops is null'd and the sysfs core synchronizes this > + * removal so that no callbacks are running or can run again > */ > - sysfs_remove_group(&chip->dev.parent->kobj, &tpm_dev_group); > + WARN_ON(chip->groups_cnt != 0); > + chip->groups[chip->groups_cnt++] = &tpm_dev_group; > } > diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h > index 8bc6fb8..508e8e0 100644 > --- a/drivers/char/tpm/tpm.h > +++ b/drivers/char/tpm/tpm.h > @@ -168,9 +168,9 @@ struct tpm_chip { > > struct dentry **bios_dir; > > -#ifdef CONFIG_ACPI > - const struct attribute_group *groups[2]; > + const struct attribute_group *groups[3]; > unsigned int groups_cnt; > +#ifdef CONFIG_ACPI > acpi_handle acpi_dev_handle; > char ppi_version[TPM_PPI_VERSION_LEN + 1]; > #endif /* CONFIG_ACPI */ > @@ -471,7 +471,8 @@ extern dev_t tpm_devt; > extern const struct file_operations tpm_fops; > extern struct idr dev_nums_idr; > > -ssize_t tpm_getcap(struct device *, __be32, cap_t *, const char *); > +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, > + const char *desc); > ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf, > size_t bufsiz); > ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, int len, > @@ -496,8 +497,7 @@ extern struct tpm_chip *tpmm_chip_alloc(struct device *pdev, > extern int tpm_chip_register(struct tpm_chip *chip); > extern void tpm_chip_unregister(struct tpm_chip *chip); > > -int tpm_sysfs_add_device(struct tpm_chip *chip); > -void tpm_sysfs_del_device(struct tpm_chip *chip); > +void tpm_sysfs_add_device(struct tpm_chip *chip); > > int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf); > > -- > 2.4.3 >
On Tue, May 10, 2016 at 06:55:23AM -0700, Jeremiah Mahler wrote: > all, > > My machine is locking up during suspend and I have bisected the > problem to this patch (e89f8b1ade9cc1a) in the latest linux-next > (20160506) kernel. > > Let me know if I can test patches or do anything else to help. Thank you. Could you email me the output of acpidump? If you want, you can send it to me as private email. It's up to you. /Jarkko > On Mon, Apr 18, 2016 at 01:26:13PM -0400, Stefan Berger wrote: > > From: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > > > > The final thing preventing this was the way the sysfs files were > > attached to the pdev. Follow the approach developed for ppi and move > > the sysfs files to the chip->dev with symlinks from the pdev > > for compatibility. Everything in the core now sanely uses container_of > > to get the chip. > > > > Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > > Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> > > --- > > drivers/char/tpm/tpm-chip.c | 73 ++++++++++++++++++++++++++++------------ > > drivers/char/tpm/tpm-interface.c | 7 ++-- > > drivers/char/tpm/tpm-sysfs.c | 61 ++++++++++++++------------------- > > drivers/char/tpm/tpm.h | 10 +++--- > > 4 files changed, 84 insertions(+), 67 deletions(-) > > > > diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c > > index 5bc530c..7e2c9cf 100644 > > --- a/drivers/char/tpm/tpm-chip.c > > +++ b/drivers/char/tpm/tpm-chip.c > > @@ -170,9 +170,7 @@ struct tpm_chip *tpm_chip_alloc(struct device *dev, > > chip->dev.class = tpm_class; > > chip->dev.release = tpm_dev_release; > > chip->dev.parent = dev; > > -#ifdef CONFIG_ACPI > > chip->dev.groups = chip->groups; > > -#endif > > > > if (chip->dev_num == 0) > > chip->dev.devt = MKDEV(MISC_MAJOR, TPM_MINOR); > > @@ -276,14 +274,10 @@ static void tpm_del_char_device(struct tpm_chip *chip) kjjjjkk> > > > static int tpm1_chip_register(struct tpm_chip *chip) > > { > > - int rc; > > - > > if (chip->flags & TPM_CHIP_FLAG_TPM2) > > return 0; > > > > - rc = tpm_sysfs_add_device(chip); > > - if (rc) > > - return rc; > > + tpm_sysfs_add_device(chip); > > > > chip->bios_dir = tpm_bios_log_setup(dev_name(&chip->dev)); > > > > @@ -297,10 +291,50 @@ static void tpm1_chip_unregister(struct tpm_chip *chip) > > > > if (chip->bios_dir) > > tpm_bios_log_teardown(chip->bios_dir); > > +} > > + > > +static void tpm_del_legacy_sysfs(struct tpm_chip *chip) > > +{ > > + struct attribute **i; > > + > > + if (chip->flags & TPM_CHIP_FLAG_TPM2) > > + return; > > > > - tpm_sysfs_del_device(chip); > > + sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); > > + > > + for (i = chip->groups[0]->attrs; *i != NULL; ++i) > > + sysfs_remove_link(&chip->dev.parent->kobj, (*i)->name); > > } > > > > +/* For compatibility with legacy sysfs paths we provide symlinks from the > > + * parent dev directory to selected names within the tpm chip directory. Old > > + * kernel versions created these files directly under the parent. > > + */ > > +static int tpm_add_legacy_sysfs(struct tpm_chip *chip) > > +{ > > + struct attribute **i; > > + int rc; > > + > > + if (chip->flags & TPM_CHIP_FLAG_TPM2) > > + return 0; > > + > > + rc = __compat_only_sysfs_link_entry_to_kobj( > > + &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); > > + if (rc && rc != -ENOENT) > > + return rc; > > + > > + /* All the names from tpm-sysfs */ > > + for (i = chip->groups[0]->attrs; *i != NULL; ++i) { > > + rc = __compat_only_sysfs_link_entry_to_kobj( > > + &chip->dev.parent->kobj, &chip->dev.kobj, (*i)->name); > > + if (rc) { > > + tpm_del_legacy_sysfs(chip); > > + return rc; > > + } > > + } > > + > > + return 0; > > +} > > /* > > * tpm_chip_register() - create a character device for the TPM chip > > * @chip: TPM chip to use. > > @@ -323,24 +357,20 @@ int tpm_chip_register(struct tpm_chip *chip) > > tpm_add_ppi(chip); > > > > rc = tpm_add_char_device(chip); > > - if (rc) > > - goto out_err; > > + if (rc) { > > + tpm1_chip_unregister(chip); > > + return rc; > > + } > > > > chip->flags |= TPM_CHIP_FLAG_REGISTERED; > > > > - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) { > > - rc = __compat_only_sysfs_link_entry_to_kobj( > > - &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); > > - if (rc && rc != -ENOENT) { > > - tpm_chip_unregister(chip); > > - return rc; > > - } > > + rc = tpm_add_legacy_sysfs(chip); > > + if (rc) { > > + tpm_chip_unregister(chip); > > + return rc; > > } > > > > return 0; > > -out_err: > > - tpm1_chip_unregister(chip); > > - return rc; > > } > > EXPORT_SYMBOL_GPL(tpm_chip_register); > > > > @@ -362,8 +392,7 @@ void tpm_chip_unregister(struct tpm_chip *chip) > > if (!(chip->flags & TPM_CHIP_FLAG_REGISTERED)) > > return; > > > > - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) > > - sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); > > + tpm_del_legacy_sysfs(chip); > > > > tpm1_chip_unregister(chip); > > tpm_del_char_device(chip); > > diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c > > index 7cba092..080dade 100644 > > --- a/drivers/char/tpm/tpm-interface.c > > +++ b/drivers/char/tpm/tpm-interface.c > > @@ -432,12 +432,11 @@ static const struct tpm_input_header tpm_getcap_header = { > > .ordinal = TPM_ORD_GET_CAP > > }; > > > > -ssize_t tpm_getcap(struct device *dev, __be32 subcap_id, cap_t *cap, > > +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, > > const char *desc) > > { > > struct tpm_cmd_t tpm_cmd; > > int rc; > > - struct tpm_chip *chip = dev_get_drvdata(dev); > > > > tpm_cmd.header.in = tpm_getcap_header; > > if (subcap_id == CAP_VERSION_1_1 || subcap_id == CAP_VERSION_1_2) { > > @@ -935,7 +934,7 @@ static struct tpm_input_header savestate_header = { > > */ > > int tpm_pm_suspend(struct device *dev) > > { > > - struct tpm_chip *chip = dev_get_drvdata(dev); > > + struct tpm_chip *chip = to_tpm_chip(dev); > > struct tpm_cmd_t cmd; > > int rc, try; > > > > @@ -996,7 +995,7 @@ EXPORT_SYMBOL_GPL(tpm_pm_suspend); > > */ > > int tpm_pm_resume(struct device *dev) > > { > > - struct tpm_chip *chip = dev_get_drvdata(dev); > > + struct tpm_chip *chip = to_tpm_chip(dev); > > > > if (chip == NULL) > > return -ENODEV; > > diff --git a/drivers/char/tpm/tpm-sysfs.c b/drivers/char/tpm/tpm-sysfs.c > > index a7c3473..b46cf70 100644 > > --- a/drivers/char/tpm/tpm-sysfs.c > > +++ b/drivers/char/tpm/tpm-sysfs.c > > @@ -36,7 +36,7 @@ static ssize_t pubek_show(struct device *dev, struct device_attribute *attr, > > int i, rc; > > char *str = buf; > > > > - struct tpm_chip *chip = dev_get_drvdata(dev); > > + struct tpm_chip *chip = to_tpm_chip(dev); > > > > tpm_cmd.header.in = tpm_readpubek_header; > > err = tpm_transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE, > > @@ -92,9 +92,9 @@ static ssize_t pcrs_show(struct device *dev, struct device_attribute *attr, > > ssize_t rc; > > int i, j, num_pcrs; > > char *str = buf; > > - struct tpm_chip *chip = dev_get_drvdata(dev); > > + struct tpm_chip *chip = to_tpm_chip(dev); > > > > - rc = tpm_getcap(dev, TPM_CAP_PROP_PCR, &cap, > > + rc = tpm_getcap(chip, TPM_CAP_PROP_PCR, &cap, > > "attempting to determine the number of PCRS"); > > if (rc) > > return 0; > > @@ -119,8 +119,8 @@ static ssize_t enabled_show(struct device *dev, struct device_attribute *attr, > > cap_t cap; > > ssize_t rc; > > > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, > > - "attempting to determine the permanent enabled state"); > > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, > > + "attempting to determine the permanent enabled state"); > > if (rc) > > return 0; > > > > @@ -135,8 +135,8 @@ static ssize_t active_show(struct device *dev, struct device_attribute *attr, > > cap_t cap; > > ssize_t rc; > > > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, > > - "attempting to determine the permanent active state"); > > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, > > + "attempting to determine the permanent active state"); > > if (rc) > > return 0; > > > > @@ -151,8 +151,8 @@ static ssize_t owned_show(struct device *dev, struct device_attribute *attr, > > cap_t cap; > > ssize_t rc; > > > > - rc = tpm_getcap(dev, TPM_CAP_PROP_OWNER, &cap, > > - "attempting to determine the owner state"); > > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_PROP_OWNER, &cap, > > + "attempting to determine the owner state"); > > if (rc) > > return 0; > > > > @@ -167,8 +167,8 @@ static ssize_t temp_deactivated_show(struct device *dev, > > cap_t cap; > > ssize_t rc; > > > > - rc = tpm_getcap(dev, TPM_CAP_FLAG_VOL, &cap, > > - "attempting to determine the temporary state"); > > + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_VOL, &cap, > > + "attempting to determine the temporary state"); > > if (rc) > > return 0; > > > > @@ -180,11 +180,12 @@ static DEVICE_ATTR_RO(temp_deactivated); > > static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > > char *buf) > > { > > + struct tpm_chip *chip = to_tpm_chip(dev); > > cap_t cap; > > ssize_t rc; > > char *str = buf; > > > > - rc = tpm_getcap(dev, TPM_CAP_PROP_MANUFACTURER, &cap, > > + rc = tpm_getcap(chip, TPM_CAP_PROP_MANUFACTURER, &cap, > > "attempting to determine the manufacturer"); > > if (rc) > > return 0; > > @@ -192,8 +193,8 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > > be32_to_cpu(cap.manufacturer_id)); > > > > /* Try to get a TPM version 1.2 TPM_CAP_VERSION_INFO */ > > - rc = tpm_getcap(dev, CAP_VERSION_1_2, &cap, > > - "attempting to determine the 1.2 version"); > > + rc = tpm_getcap(chip, CAP_VERSION_1_2, &cap, > > + "attempting to determine the 1.2 version"); > > if (!rc) { > > str += sprintf(str, > > "TCG version: %d.%d\nFirmware version: %d.%d\n", > > @@ -203,7 +204,7 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, > > cap.tpm_version_1_2.revMinor); > > } else { > > /* Otherwise just use TPM_STRUCT_VER */ > > - rc = tpm_getcap(dev, CAP_VERSION_1_1, &cap, > > + rc = tpm_getcap(chip, CAP_VERSION_1_1, &cap, > > "attempting to determine the 1.1 version"); > > if (rc) > > return 0; > > @@ -222,7 +223,7 @@ static DEVICE_ATTR_RO(caps); > > static ssize_t cancel_store(struct device *dev, struct device_attribute *attr, > > const char *buf, size_t count) > > { > > - struct tpm_chip *chip = dev_get_drvdata(dev); > > + struct tpm_chip *chip = to_tpm_chip(dev); > > if (chip == NULL) > > return 0; > > > > @@ -234,7 +235,7 @@ static DEVICE_ATTR_WO(cancel); > > static ssize_t durations_show(struct device *dev, struct device_attribute *attr, > > char *buf) > > { > > - struct tpm_chip *chip = dev_get_drvdata(dev); > > + struct tpm_chip *chip = to_tpm_chip(dev); > > > > if (chip->duration[TPM_LONG] == 0) > > return 0; > > @@ -251,7 +252,7 @@ static DEVICE_ATTR_RO(durations); > > static ssize_t timeouts_show(struct device *dev, struct device_attribute *attr, > > char *buf) > > { > > - struct tpm_chip *chip = dev_get_drvdata(dev); > > + struct tpm_chip *chip = to_tpm_chip(dev); > > > > return sprintf(buf, "%d %d %d %d [%s]\n", > > jiffies_to_usecs(chip->timeout_a), > > @@ -281,24 +282,12 @@ static const struct attribute_group tpm_dev_group = { > > .attrs = tpm_dev_attrs, > > }; > > > > -int tpm_sysfs_add_device(struct tpm_chip *chip) > > +void tpm_sysfs_add_device(struct tpm_chip *chip) > > { > > - int err; > > - err = sysfs_create_group(&chip->dev.parent->kobj, > > - &tpm_dev_group); > > - > > - if (err) > > - dev_err(&chip->dev, > > - "failed to create sysfs attributes, %d\n", err); > > - return err; > > -} > > - > > -void tpm_sysfs_del_device(struct tpm_chip *chip) > > -{ > > - /* The sysfs routines rely on an implicit tpm_try_get_ops, this > > - * function is called before ops is null'd and the sysfs core > > - * synchronizes this removal so that no callbacks are running or can > > - * run again > > + /* The sysfs routines rely on an implicit tpm_try_get_ops, device_del > > + * is called before ops is null'd and the sysfs core synchronizes this > > + * removal so that no callbacks are running or can run again > > */ > > - sysfs_remove_group(&chip->dev.parent->kobj, &tpm_dev_group); > > + WARN_ON(chip->groups_cnt != 0); > > + chip->groups[chip->groups_cnt++] = &tpm_dev_group; > > } > > diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h > > index 8bc6fb8..508e8e0 100644 > > --- a/drivers/char/tpm/tpm.h > > +++ b/drivers/char/tpm/tpm.h > > @@ -168,9 +168,9 @@ struct tpm_chip { > > > > struct dentry **bios_dir; > > > > -#ifdef CONFIG_ACPI > > - const struct attribute_group *groups[2]; > > + const struct attribute_group *groups[3]; > > unsigned int groups_cnt; > > +#ifdef CONFIG_ACPI > > acpi_handle acpi_dev_handle; > > char ppi_version[TPM_PPI_VERSION_LEN + 1]; > > #endif /* CONFIG_ACPI */ > > @@ -471,7 +471,8 @@ extern dev_t tpm_devt; > > extern const struct file_operations tpm_fops; > > extern struct idr dev_nums_idr; > > > > -ssize_t tpm_getcap(struct device *, __be32, cap_t *, const char *); > > +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, > > + const char *desc); > > ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf, > > size_t bufsiz); > > ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, int len, > > @@ -496,8 +497,7 @@ extern struct tpm_chip *tpmm_chip_alloc(struct device *pdev, > > extern int tpm_chip_register(struct tpm_chip *chip); > > extern void tpm_chip_unregister(struct tpm_chip *chip); > > > > -int tpm_sysfs_add_device(struct tpm_chip *chip); > > -void tpm_sysfs_del_device(struct tpm_chip *chip); > > +void tpm_sysfs_add_device(struct tpm_chip *chip); > > > > int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf); > > > > -- > > 2.4.3 > > > > -- > - Jeremiah Mahler ------------------------------------------------------------------------------ Mobile security can be enabling, not merely restricting. Employees who bring their own devices (BYOD) to work are irked by the imposition of MDM restrictions. Mobile Device Manager Plus allows you to control only the apps on BYO-devices by containerizing them, leaving personal data untouched! https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
Jeremiah Mahler <jmmahler@gmail.com> wrote on 05/10/2016 09:55:23 AM: > > all, > > My machine is locking up during suspend and I have bisected the > problem to this patch (e89f8b1ade9cc1a) in the latest linux-next > (20160506) kernel. > > Let me know if I can test patches or do anything else to help. The chip retrieval method in the pm functions is wrong. Sending patch. Stefan ------------------------------------------------------------------------------ Mobile security can be enabling, not merely restricting. Employees who bring their own devices (BYOD) to work are irked by the imposition of MDM restrictions. Mobile Device Manager Plus allows you to control only the apps on BYO-devices by containerizing them, leaving personal data untouched! https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
Stefan, On Tue, May 10, 2016 at 11:05:43AM -0400, Stefan Berger wrote: > Jeremiah Mahler <jmmahler@gmail.com> wrote on 05/10/2016 09:55:23 AM: > > > > > all, > > > > My machine is locking up during suspend and I have bisected the > > problem to this patch (e89f8b1ade9cc1a) in the latest linux-next > > (20160506) kernel. > > > > Let me know if I can test patches or do anything else to help. > > The chip retrieval method in the pm functions is wrong. Sending patch. > > Stefan > > Thanks for the quick reply Stefan. Let me know when you have a patch for me to test.
Jeremiah Mahler <jmmahler@gmail.com> wrote on 05/10/2016 09:26:17 PM: > > Stefan, > > On Tue, May 10, 2016 at 11:05:43AM -0400, Stefan Berger wrote: > > Jeremiah Mahler <jmmahler@gmail.com> wrote on 05/10/2016 09:55:23 AM: > > > > > > > > all, > > > > > > My machine is locking up during suspend and I have bisected the > > > problem to this patch (e89f8b1ade9cc1a) in the latest linux-next > > > (20160506) kernel. > > > > > > Let me know if I can test patches or do anything else to help. > > > > The chip retrieval method in the pm functions is wrong. Sending patch. > > > > Stefan > > > > > > Thanks for the quick reply Stefan. Let me know when you have a > patch for me to test. I forgot to cc you on the patch and obviously you weren't cc'ed through the Reported-by: line. Here's a pointer to the patch. http://thread.gmane.org/gmane.comp.encryption.tpmdd.devel/974 Thanks for testing and bisecting. Regards, Stefan > > -- > - Jeremiah Mahler > ------------------------------------------------------------------------------ Mobile security can be enabling, not merely restricting. Employees who bring their own devices (BYOD) to work are irked by the imposition of MDM restrictions. Mobile Device Manager Plus allows you to control only the apps on BYO-devices by containerizing them, leaving personal data untouched! https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
Stefan, On Wed, May 11, 2016 at 06:27:52AM -0400, Stefan Berger wrote: > Jeremiah Mahler <jmmahler@gmail.com> wrote on 05/10/2016 09:26:17 PM: > [...] > > I forgot to cc you on the patch and obviously you weren't cc'ed through > the Reported-by: line. > > Here's a pointer to the patch. > > http://thread.gmane.org/gmane.comp.encryption.tpmdd.devel/974 > > > Thanks for testing and bisecting. > > Regards, > Stefan > [...] I tested out the patch and it fixed the problem. Thanks Stefan. I would add my Tested-by but I couldn't find the patch on the main Linux mailing list. Perhaps I am not subscribed to the right list?
On 05/11/2016 10:29 AM, Jeremiah Mahler wrote: > Stefan, > > On Wed, May 11, 2016 at 06:27:52AM -0400, Stefan Berger wrote: >> Jeremiah Mahler <jmmahler@gmail.com> wrote on 05/10/2016 09:26:17 PM: >> > [...] >> I forgot to cc you on the patch and obviously you weren't cc'ed through >> the Reported-by: line. >> >> Here's a pointer to the patch. >> >> http://thread.gmane.org/gmane.comp.encryption.tpmdd.devel/974 >> >> >> Thanks for testing and bisecting. >> >> Regards, >> Stefan >> > [...] > > I tested out the patch and it fixed the problem. Thanks Stefan. > > I would add my Tested-by but I couldn't find the patch on the main > Linux mailing list. Perhaps I am not subscribed to the right list? > Thanks. I will add your Tested-by to it. I had posted the patch only to the tpmdd-devel mailing list. Stefan ------------------------------------------------------------------------------ Mobile security can be enabling, not merely restricting. Employees who bring their own devices (BYOD) to work are irked by the imposition of MDM restrictions. Mobile Device Manager Plus allows you to control only the apps on BYO-devices by containerizing them, leaving personal data untouched! https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c index 5bc530c..7e2c9cf 100644 --- a/drivers/char/tpm/tpm-chip.c +++ b/drivers/char/tpm/tpm-chip.c @@ -170,9 +170,7 @@ struct tpm_chip *tpm_chip_alloc(struct device *dev, chip->dev.class = tpm_class; chip->dev.release = tpm_dev_release; chip->dev.parent = dev; -#ifdef CONFIG_ACPI chip->dev.groups = chip->groups; -#endif if (chip->dev_num == 0) chip->dev.devt = MKDEV(MISC_MAJOR, TPM_MINOR); @@ -276,14 +274,10 @@ static void tpm_del_char_device(struct tpm_chip *chip) static int tpm1_chip_register(struct tpm_chip *chip) { - int rc; - if (chip->flags & TPM_CHIP_FLAG_TPM2) return 0; - rc = tpm_sysfs_add_device(chip); - if (rc) - return rc; + tpm_sysfs_add_device(chip); chip->bios_dir = tpm_bios_log_setup(dev_name(&chip->dev)); @@ -297,10 +291,50 @@ static void tpm1_chip_unregister(struct tpm_chip *chip) if (chip->bios_dir) tpm_bios_log_teardown(chip->bios_dir); +} + +static void tpm_del_legacy_sysfs(struct tpm_chip *chip) +{ + struct attribute **i; + + if (chip->flags & TPM_CHIP_FLAG_TPM2) + return; - tpm_sysfs_del_device(chip); + sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); + + for (i = chip->groups[0]->attrs; *i != NULL; ++i) + sysfs_remove_link(&chip->dev.parent->kobj, (*i)->name); } +/* For compatibility with legacy sysfs paths we provide symlinks from the + * parent dev directory to selected names within the tpm chip directory. Old + * kernel versions created these files directly under the parent. + */ +static int tpm_add_legacy_sysfs(struct tpm_chip *chip) +{ + struct attribute **i; + int rc; + + if (chip->flags & TPM_CHIP_FLAG_TPM2) + return 0; + + rc = __compat_only_sysfs_link_entry_to_kobj( + &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); + if (rc && rc != -ENOENT) + return rc; + + /* All the names from tpm-sysfs */ + for (i = chip->groups[0]->attrs; *i != NULL; ++i) { + rc = __compat_only_sysfs_link_entry_to_kobj( + &chip->dev.parent->kobj, &chip->dev.kobj, (*i)->name); + if (rc) { + tpm_del_legacy_sysfs(chip); + return rc; + } + } + + return 0; +} /* * tpm_chip_register() - create a character device for the TPM chip * @chip: TPM chip to use. @@ -323,24 +357,20 @@ int tpm_chip_register(struct tpm_chip *chip) tpm_add_ppi(chip); rc = tpm_add_char_device(chip); - if (rc) - goto out_err; + if (rc) { + tpm1_chip_unregister(chip); + return rc; + } chip->flags |= TPM_CHIP_FLAG_REGISTERED; - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) { - rc = __compat_only_sysfs_link_entry_to_kobj( - &chip->dev.parent->kobj, &chip->dev.kobj, "ppi"); - if (rc && rc != -ENOENT) { - tpm_chip_unregister(chip); - return rc; - } + rc = tpm_add_legacy_sysfs(chip); + if (rc) { + tpm_chip_unregister(chip); + return rc; } return 0; -out_err: - tpm1_chip_unregister(chip); - return rc; } EXPORT_SYMBOL_GPL(tpm_chip_register); @@ -362,8 +392,7 @@ void tpm_chip_unregister(struct tpm_chip *chip) if (!(chip->flags & TPM_CHIP_FLAG_REGISTERED)) return; - if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) - sysfs_remove_link(&chip->dev.parent->kobj, "ppi"); + tpm_del_legacy_sysfs(chip); tpm1_chip_unregister(chip); tpm_del_char_device(chip); diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c index 7cba092..080dade 100644 --- a/drivers/char/tpm/tpm-interface.c +++ b/drivers/char/tpm/tpm-interface.c @@ -432,12 +432,11 @@ static const struct tpm_input_header tpm_getcap_header = { .ordinal = TPM_ORD_GET_CAP }; -ssize_t tpm_getcap(struct device *dev, __be32 subcap_id, cap_t *cap, +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, const char *desc) { struct tpm_cmd_t tpm_cmd; int rc; - struct tpm_chip *chip = dev_get_drvdata(dev); tpm_cmd.header.in = tpm_getcap_header; if (subcap_id == CAP_VERSION_1_1 || subcap_id == CAP_VERSION_1_2) { @@ -935,7 +934,7 @@ static struct tpm_input_header savestate_header = { */ int tpm_pm_suspend(struct device *dev) { - struct tpm_chip *chip = dev_get_drvdata(dev); + struct tpm_chip *chip = to_tpm_chip(dev); struct tpm_cmd_t cmd; int rc, try; @@ -996,7 +995,7 @@ EXPORT_SYMBOL_GPL(tpm_pm_suspend); */ int tpm_pm_resume(struct device *dev) { - struct tpm_chip *chip = dev_get_drvdata(dev); + struct tpm_chip *chip = to_tpm_chip(dev); if (chip == NULL) return -ENODEV; diff --git a/drivers/char/tpm/tpm-sysfs.c b/drivers/char/tpm/tpm-sysfs.c index a7c3473..b46cf70 100644 --- a/drivers/char/tpm/tpm-sysfs.c +++ b/drivers/char/tpm/tpm-sysfs.c @@ -36,7 +36,7 @@ static ssize_t pubek_show(struct device *dev, struct device_attribute *attr, int i, rc; char *str = buf; - struct tpm_chip *chip = dev_get_drvdata(dev); + struct tpm_chip *chip = to_tpm_chip(dev); tpm_cmd.header.in = tpm_readpubek_header; err = tpm_transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE, @@ -92,9 +92,9 @@ static ssize_t pcrs_show(struct device *dev, struct device_attribute *attr, ssize_t rc; int i, j, num_pcrs; char *str = buf; - struct tpm_chip *chip = dev_get_drvdata(dev); + struct tpm_chip *chip = to_tpm_chip(dev); - rc = tpm_getcap(dev, TPM_CAP_PROP_PCR, &cap, + rc = tpm_getcap(chip, TPM_CAP_PROP_PCR, &cap, "attempting to determine the number of PCRS"); if (rc) return 0; @@ -119,8 +119,8 @@ static ssize_t enabled_show(struct device *dev, struct device_attribute *attr, cap_t cap; ssize_t rc; - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, - "attempting to determine the permanent enabled state"); + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, + "attempting to determine the permanent enabled state"); if (rc) return 0; @@ -135,8 +135,8 @@ static ssize_t active_show(struct device *dev, struct device_attribute *attr, cap_t cap; ssize_t rc; - rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, - "attempting to determine the permanent active state"); + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_PERM, &cap, + "attempting to determine the permanent active state"); if (rc) return 0; @@ -151,8 +151,8 @@ static ssize_t owned_show(struct device *dev, struct device_attribute *attr, cap_t cap; ssize_t rc; - rc = tpm_getcap(dev, TPM_CAP_PROP_OWNER, &cap, - "attempting to determine the owner state"); + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_PROP_OWNER, &cap, + "attempting to determine the owner state"); if (rc) return 0; @@ -167,8 +167,8 @@ static ssize_t temp_deactivated_show(struct device *dev, cap_t cap; ssize_t rc; - rc = tpm_getcap(dev, TPM_CAP_FLAG_VOL, &cap, - "attempting to determine the temporary state"); + rc = tpm_getcap(to_tpm_chip(dev), TPM_CAP_FLAG_VOL, &cap, + "attempting to determine the temporary state"); if (rc) return 0; @@ -180,11 +180,12 @@ static DEVICE_ATTR_RO(temp_deactivated); static ssize_t caps_show(struct device *dev, struct device_attribute *attr, char *buf) { + struct tpm_chip *chip = to_tpm_chip(dev); cap_t cap; ssize_t rc; char *str = buf; - rc = tpm_getcap(dev, TPM_CAP_PROP_MANUFACTURER, &cap, + rc = tpm_getcap(chip, TPM_CAP_PROP_MANUFACTURER, &cap, "attempting to determine the manufacturer"); if (rc) return 0; @@ -192,8 +193,8 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, be32_to_cpu(cap.manufacturer_id)); /* Try to get a TPM version 1.2 TPM_CAP_VERSION_INFO */ - rc = tpm_getcap(dev, CAP_VERSION_1_2, &cap, - "attempting to determine the 1.2 version"); + rc = tpm_getcap(chip, CAP_VERSION_1_2, &cap, + "attempting to determine the 1.2 version"); if (!rc) { str += sprintf(str, "TCG version: %d.%d\nFirmware version: %d.%d\n", @@ -203,7 +204,7 @@ static ssize_t caps_show(struct device *dev, struct device_attribute *attr, cap.tpm_version_1_2.revMinor); } else { /* Otherwise just use TPM_STRUCT_VER */ - rc = tpm_getcap(dev, CAP_VERSION_1_1, &cap, + rc = tpm_getcap(chip, CAP_VERSION_1_1, &cap, "attempting to determine the 1.1 version"); if (rc) return 0; @@ -222,7 +223,7 @@ static DEVICE_ATTR_RO(caps); static ssize_t cancel_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { - struct tpm_chip *chip = dev_get_drvdata(dev); + struct tpm_chip *chip = to_tpm_chip(dev); if (chip == NULL) return 0; @@ -234,7 +235,7 @@ static DEVICE_ATTR_WO(cancel); static ssize_t durations_show(struct device *dev, struct device_attribute *attr, char *buf) { - struct tpm_chip *chip = dev_get_drvdata(dev); + struct tpm_chip *chip = to_tpm_chip(dev); if (chip->duration[TPM_LONG] == 0) return 0; @@ -251,7 +252,7 @@ static DEVICE_ATTR_RO(durations); static ssize_t timeouts_show(struct device *dev, struct device_attribute *attr, char *buf) { - struct tpm_chip *chip = dev_get_drvdata(dev); + struct tpm_chip *chip = to_tpm_chip(dev); return sprintf(buf, "%d %d %d %d [%s]\n", jiffies_to_usecs(chip->timeout_a), @@ -281,24 +282,12 @@ static const struct attribute_group tpm_dev_group = { .attrs = tpm_dev_attrs, }; -int tpm_sysfs_add_device(struct tpm_chip *chip) +void tpm_sysfs_add_device(struct tpm_chip *chip) { - int err; - err = sysfs_create_group(&chip->dev.parent->kobj, - &tpm_dev_group); - - if (err) - dev_err(&chip->dev, - "failed to create sysfs attributes, %d\n", err); - return err; -} - -void tpm_sysfs_del_device(struct tpm_chip *chip) -{ - /* The sysfs routines rely on an implicit tpm_try_get_ops, this - * function is called before ops is null'd and the sysfs core - * synchronizes this removal so that no callbacks are running or can - * run again + /* The sysfs routines rely on an implicit tpm_try_get_ops, device_del + * is called before ops is null'd and the sysfs core synchronizes this + * removal so that no callbacks are running or can run again */ - sysfs_remove_group(&chip->dev.parent->kobj, &tpm_dev_group); + WARN_ON(chip->groups_cnt != 0); + chip->groups[chip->groups_cnt++] = &tpm_dev_group; } diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h index 8bc6fb8..508e8e0 100644 --- a/drivers/char/tpm/tpm.h +++ b/drivers/char/tpm/tpm.h @@ -168,9 +168,9 @@ struct tpm_chip { struct dentry **bios_dir; -#ifdef CONFIG_ACPI - const struct attribute_group *groups[2]; + const struct attribute_group *groups[3]; unsigned int groups_cnt; +#ifdef CONFIG_ACPI acpi_handle acpi_dev_handle; char ppi_version[TPM_PPI_VERSION_LEN + 1]; #endif /* CONFIG_ACPI */ @@ -471,7 +471,8 @@ extern dev_t tpm_devt; extern const struct file_operations tpm_fops; extern struct idr dev_nums_idr; -ssize_t tpm_getcap(struct device *, __be32, cap_t *, const char *); +ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, + const char *desc); ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf, size_t bufsiz); ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, int len, @@ -496,8 +497,7 @@ extern struct tpm_chip *tpmm_chip_alloc(struct device *pdev, extern int tpm_chip_register(struct tpm_chip *chip); extern void tpm_chip_unregister(struct tpm_chip *chip); -int tpm_sysfs_add_device(struct tpm_chip *chip); -void tpm_sysfs_del_device(struct tpm_chip *chip); +void tpm_sysfs_add_device(struct tpm_chip *chip); int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf);