diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-06 11:06:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-06 11:06:39 -0400 |
commit | bb2cbf5e9367d8598fecd0c48dead69560750223 (patch) | |
tree | fb2c620451b90f41a31726bdd82077813f941e39 /Documentation/kernel-parameters.txt | |
parent | e7fda6c4c3c1a7d6996dd75fd84670fa0b5d448f (diff) | |
parent | 478d085524c57cf4283699f529d5a4c22188ea69 (diff) |
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security
Pull security subsystem updates from James Morris:
"In this release:
- PKCS#7 parser for the key management subsystem from David Howells
- appoint Kees Cook as seccomp maintainer
- bugfixes and general maintenance across the subsystem"
* 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security: (94 commits)
X.509: Need to export x509_request_asymmetric_key()
netlabel: shorter names for the NetLabel catmap funcs/structs
netlabel: fix the catmap walking functions
netlabel: fix the horribly broken catmap functions
netlabel: fix a problem when setting bits below the previously lowest bit
PKCS#7: X.509 certificate issuer and subject are mandatory fields in the ASN.1
tpm: simplify code by using %*phN specifier
tpm: Provide a generic means to override the chip returned timeouts
tpm: missing tpm_chip_put in tpm_get_random()
tpm: Properly clean sysfs entries in error path
tpm: Add missing tpm_do_selftest to ST33 I2C driver
PKCS#7: Use x509_request_asymmetric_key()
Revert "selinux: fix the default socket labeling in sock_graft()"
X.509: x509_request_asymmetric_keys() doesn't need string length arguments
PKCS#7: fix sparse non static symbol warning
KEYS: revert encrypted key change
ima: add support for measuring and appraising firmware
firmware_class: perform new LSM checks
security: introduce kernel_fw_from_file hook
PKCS#7: Missing inclusion of linux/err.h
...
Diffstat (limited to 'Documentation/kernel-parameters.txt')
-rw-r--r-- | Documentation/kernel-parameters.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 6c062a64a796..883901b9ac4f 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -566,6 +566,11 @@ bytes respectively. Such letter suffixes can also be entirely omitted. | |||
566 | possible to determine what the correct size should be. | 566 | possible to determine what the correct size should be. |
567 | This option provides an override for these situations. | 567 | This option provides an override for these situations. |
568 | 568 | ||
569 | ca_keys= [KEYS] This parameter identifies a specific key(s) on | ||
570 | the system trusted keyring to be used for certificate | ||
571 | trust validation. | ||
572 | format: { id:<keyid> | builtin } | ||
573 | |||
569 | ccw_timeout_log [S390] | 574 | ccw_timeout_log [S390] |
570 | See Documentation/s390/CommonIO for details. | 575 | See Documentation/s390/CommonIO for details. |
571 | 576 | ||
@@ -1319,6 +1324,23 @@ bytes respectively. Such letter suffixes can also be entirely omitted. | |||
1319 | Formats: { "ima" | "ima-ng" } | 1324 | Formats: { "ima" | "ima-ng" } |
1320 | Default: "ima-ng" | 1325 | Default: "ima-ng" |
1321 | 1326 | ||
1327 | ima.ahash_minsize= [IMA] Minimum file size for asynchronous hash usage | ||
1328 | Format: <min_file_size> | ||
1329 | Set the minimal file size for using asynchronous hash. | ||
1330 | If left unspecified, ahash usage is disabled. | ||
1331 | |||
1332 | ahash performance varies for different data sizes on | ||
1333 | different crypto accelerators. This option can be used | ||
1334 | to achieve the best performance for a particular HW. | ||
1335 | |||
1336 | ima.ahash_bufsize= [IMA] Asynchronous hash buffer size | ||
1337 | Format: <bufsize> | ||
1338 | Set hashing buffer size. Default: 4k. | ||
1339 | |||
1340 | ahash performance varies for different chunk sizes on | ||
1341 | different crypto accelerators. This option can be used | ||
1342 | to achieve best performance for particular HW. | ||
1343 | |||
1322 | init= [KNL] | 1344 | init= [KNL] |
1323 | Format: <full_path> | 1345 | Format: <full_path> |
1324 | Run specified binary instead of /sbin/init as init | 1346 | Run specified binary instead of /sbin/init as init |