This is the third version of the patch series to add some xfstests for filesystem-level encryption. The new tests are designed to run on any filesystem that implements the "fscrypt" API, currently ext4 and f2fs. (fscrypt support for ubifs is also under development, but it looks like xfstests doesn't have ubifs support yet.) The new tests are designed to complement, not replace, doing a full xfstests run with encryption enabled, which for ext4 can currently be done by using the test_dummy_encryption mount option. Changes since v2: * Use filesystem-specific key prefix rather than generic one. * Use a new keyring for each test. * Add a test for restrictions on moving and linking files. * Make "cryptographic weaknesses" test compatible with f2fs. * For now, accept both the old and new versions of certain error codes which are planned to be changed. Changes since v1: * Drop fscrypt_util test program and use new xfs_io commands and keyctl instead (xfs_io patch sent separately) * Updates to match xfstests coding style * Move validation of policy structure into its own test * Add test to detect some cryptographic weaknesses * Drop ioctl locking test Eric Biggers (6): generic: add utilities for testing filesystem encryption generic: test setting and getting encryption policies generic: test validation of encryption policy structure generic: test encrypted file access generic: test enforcement of one encryption policy per tree generic: test for weaknesses in filesystem encryption common/config | 2 + common/encrypt | 137 ++++++++++++++++++++++++++++++++++++++++++ tests/generic/400 | 132 ++++++++++++++++++++++++++++++++++++++++ tests/generic/400.out | 43 +++++++++++++ tests/generic/401 | 83 +++++++++++++++++++++++++ tests/generic/401.out | 18 ++++++ tests/generic/402 | 145 ++++++++++++++++++++++++++++++++++++++++++++ tests/generic/402.out | 13 ++++ tests/generic/403 | 130 ++++++++++++++++++++++++++++++++++++++++ tests/generic/403.out | 34 +++++++++++ tests/generic/404 | 163 ++++++++++++++++++++++++++++++++++++++++++++++++++ tests/generic/404.out | 3 + tests/generic/group | 5 ++ 13 files changed, 908 insertions(+) create mode 100644 common/encrypt create mode 100755 tests/generic/400 create mode 100644 tests/generic/400.out create mode 100755 tests/generic/401 create mode 100644 tests/generic/401.out create mode 100755 tests/generic/402 create mode 100644 tests/generic/402.out create mode 100644 tests/generic/403 create mode 100644 tests/generic/403.out create mode 100755 tests/generic/404 create mode 100644 tests/generic/404.out -- 2.8.0.rc3.226.g39d4020 -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html