forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/…
…jmorris/linux-security Pull security subsystem update from James Morris: "This is mostly maintenance updates across the subsystem, with a notable update for TPM 2.0, and addition of Jarkko Sakkinen as a maintainer of that" * 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security: (40 commits) apparmor: clarify CRYPTO dependency selinux: Use a kmem_cache for allocation struct file_security_struct selinux: ioctl_has_perm should be static selinux: use sprintf return value selinux: use kstrdup() in security_get_bools() selinux: use kmemdup in security_sid_to_context_core() selinux: remove pointless cast in selinux_inode_setsecurity() selinux: introduce security_context_str_to_sid selinux: do not check open perm on ftruncate call selinux: change CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE default KEYS: Merge the type-specific data with the payload data KEYS: Provide a script to extract a module signature KEYS: Provide a script to extract the sys cert list from a vmlinux file keys: Be more consistent in selection of union members used certs: add .gitignore to stop git nagging about x509_certificate_list KEYS: use kvfree() in add_key Smack: limited capability for changing process label TPM: remove unnecessary little endian conversion vTPM: support little endian guests char: Drop owner assignment from i2c_driver ...
- Loading branch information
Showing
89 changed files
with
1,748 additions
and
492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
What: /sys/devices/pnp0/<bus-num>/ppi/ | ||
What: /sys/class/tpm/tpmX/ppi/ | ||
Date: August 2012 | ||
Kernel Version: 3.6 | ||
Contact: [email protected] | ||
|
@@ -8,17 +8,22 @@ Description: | |
folder makes sense. The folder path can be got by command | ||
'find /sys/ -name 'pcrs''. For the detail information of PPI, | ||
please refer to the PPI specification from | ||
|
||
http://www.trustedcomputinggroup.org/ | ||
|
||
What: /sys/devices/pnp0/<bus-num>/ppi/version | ||
In Linux 4.2 ppi was moved to the character device directory. | ||
A symlink from tpmX/device/ppi to tpmX/ppi to provide backwards | ||
compatibility. | ||
|
||
What: /sys/class/tpm/tpmX/ppi/version | ||
Date: August 2012 | ||
Contact: [email protected] | ||
Description: | ||
This attribute shows the version of the PPI supported by the | ||
platform. | ||
This file is readonly. | ||
|
||
What: /sys/devices/pnp0/<bus-num>/ppi/request | ||
What: /sys/class/tpm/tpmX/ppi/request | ||
Date: August 2012 | ||
Contact: [email protected] | ||
Description: | ||
|
@@ -28,7 +33,7 @@ Description: | |
integer value range from 1 to 160, and 0 means no request. | ||
This file can be read and written. | ||
|
||
What: /sys/devices/pnp0/00:<bus-num>/ppi/response | ||
What: /sys/class/tpm/tpmX/ppi/response | ||
Date: August 2012 | ||
Contact: [email protected] | ||
Description: | ||
|
@@ -37,7 +42,7 @@ Description: | |
: <response description>". | ||
This file is readonly. | ||
|
||
What: /sys/devices/pnp0/<bus-num>/ppi/transition_action | ||
What: /sys/class/tpm/tpmX/ppi/transition_action | ||
Date: August 2012 | ||
Contact: [email protected] | ||
Description: | ||
|
@@ -47,7 +52,7 @@ Description: | |
description>". | ||
This file is readonly. | ||
|
||
What: /sys/devices/pnp0/<bus-num>/ppi/tcg_operations | ||
What: /sys/class/tpm/tpmX/ppi/tcg_operations | ||
Date: August 2012 | ||
Contact: [email protected] | ||
Description: | ||
|
@@ -58,7 +63,7 @@ Description: | |
This attribute is only supported by PPI version 1.2+. | ||
This file is readonly. | ||
|
||
What: /sys/devices/pnp0/<bus-num>/ppi/vs_operations | ||
What: /sys/class/tpm/tpmX/ppi/vs_operations | ||
Date: August 2012 | ||
Contact: [email protected] | ||
Description: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10738,6 +10738,7 @@ F: drivers/media/pci/tw68/ | |
TPM DEVICE DRIVER | ||
M: Peter Huewe <[email protected]> | ||
M: Marcel Selhorst <[email protected]> | ||
M: Jarkko Sakkinen <[email protected]> | ||
R: Jason Gunthorpe <[email protected]> | ||
W: http://tpmdd.sourceforge.net | ||
L: [email protected] (moderated for non-subscribers) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# | ||
# Generated files | ||
# | ||
x509_certificate_list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.